Skip to content

Commit

Permalink
Ambiguous reference errors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwille committed Jan 1, 2025
1 parent c2dd1b8 commit 32736a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ICSharpCode.Decompiler.Tests/CorrectnessTestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ async Task RunCS([CallerMemberName] string testName = null, CompilerOptions opti
options |= CompilerOptions.UseTestRunner;
string testFileName = testName + ".cs";
string testOutputFileName = TestsAssemblyOutput.GetFilePath(TestCasePath, testName, Tester.GetSuffix(options) + ".exe");
CompilerResults outputFile = null, decompiledOutputFile = null;
Helpers.CompilerResults outputFile = null, decompiledOutputFile = null;

try
{
Expand Down Expand Up @@ -453,7 +453,7 @@ async Task RunVB([CallerMemberName] string testName = null, CompilerOptions opti
options |= CompilerOptions.UseTestRunner;
string testFileName = testName + ".vb";
string testOutputFileName = TestsAssemblyOutput.GetFilePath(TestCasePath, testName, Tester.GetSuffix(options) + ".exe");
CompilerResults outputFile = null, decompiledOutputFile = null;
Helpers.CompilerResults outputFile = null, decompiledOutputFile = null;

try
{
Expand All @@ -477,7 +477,7 @@ async Task RunVB([CallerMemberName] string testName = null, CompilerOptions opti
async Task RunIL(string testFileName, CompilerOptions options = CompilerOptions.UseDebug, AssemblerOptions asmOptions = AssemblerOptions.None)
{
string outputFile = null;
CompilerResults decompiledOutputFile = null;
Helpers.CompilerResults decompiledOutputFile = null;

bool optionsForce32Bit = options.HasFlag(CompilerOptions.Force32Bit);
bool asmOptionsForce32Bit = asmOptions.HasFlag(AssemblerOptions.Force32Bit);
Expand Down
2 changes: 1 addition & 1 deletion ICSharpCode.Decompiler.Tests/UglyTestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ async Task Run([CallerMemberName] string testName = null, AssemblerOptions asmOp
if (!File.Exists(ilFile))
{
// re-create .il file if necessary
CompilerResults output = null;
Helpers.CompilerResults output = null;
try
{
output = await Tester.CompileCSharp(csFile, cscOptions).ConfigureAwait(false);
Expand Down

0 comments on commit 32736a7

Please sign in to comment.