2936 references to DebugDll
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (1)
CommandLineTests.cs (1)
13550options: TestOptions.DebugDll.WithCryptoKeyFile(Path.GetFileName(snk.Path)).WithStrongNameProvider(virtualSnProvider),
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Diagnostics\Suppression\RemoveUnnecessaryPragmaSuppressionsTests.cs (2)
54=> parameters.WithCompilationOptions((parameters.compilationOptions ?? TestOptions.DebugDll).WithReportSuppressedDiagnostics(true)); 1064var compilationOptions = TestOptions.DebugDll.WithSpecificDiagnosticOptions(
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (694)
CodeGen\CodeGenAsyncIteratorTests.cs (3)
802var comp = CreateCompilationWithAsyncIterator(source, options: TestOptions.DebugDll); 849var comp = CreateCompilationWithAsyncIterator(source, options: TestOptions.DebugDll); 876var comp = CreateCompilationWithAsyncIterator(source, options: TestOptions.DebugDll);
CodeGen\CodeGenAsyncLocalsTests.cs (2)
249CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 306var vd = CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module =>
CodeGen\CodeGenAsyncMainTests.cs (4)
362var corCompilation = CreateEmptyCompilation(corAssembly, options: TestOptions.DebugDll); 369var taskCompilation = CreateCompilationWithMscorlib45(taskAssembly, options: TestOptions.DebugDll); 402var corCompilation = CreateEmptyCompilation(corAssembly, options: TestOptions.DebugDll); 409var taskCompilation = CreateCompilationWithMscorlib45(taskAssembly, options: TestOptions.DebugDll);
CodeGen\CodeGenAsyncSpillTests.cs (5)
596var v = CompileAndVerify(source, options: TestOptions.DebugDll); 912CompileAndVerify(source, options: TestOptions.DebugDll); 960CompileAndVerify(source, verify: Verification.Passes, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1144CompileAndVerify(source, options: TestOptions.DebugDll); 3821CreateCompilation(source, options: TestOptions.DebugDll).VerifyDiagnostics().VerifyEmitDiagnostics(
CodeGen\CodeGenAsyncTests.cs (6)
4232var v = CompileAndVerify(source, null, options: TestOptions.DebugDll); 5038var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 5084var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 5118var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 5749var c = CreateCompilation(source, options: TestOptions.DebugDll); 5903var comp = CreateCompilation(source, options: TestOptions.DebugDll);
CodeGen\CodeGenClosureLambdaTests.cs (3)
3954CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: m => 4025CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: m => 4066CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: m =>
CodeGen\CodeGenConstructorInitTests.cs (5)
690var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 757options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 779options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 846options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 925options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
CodeGen\CodeGenDeconstructTests.cs (14)
6680var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 8228var comp = CreateCompilationWithMscorlib45(source, references: s_valueTupleRefs, options: TestOptions.DebugDll); 8259var comp = CreateCompilationWithMscorlib45(source, references: s_valueTupleRefs, options: TestOptions.DebugDll); 8294var comp = CreateCompilationWithMscorlib45(source, references: s_valueTupleRefs, options: TestOptions.DebugDll); 8324var comp = CreateCompilationWithMscorlib45(source, references: s_valueTupleRefs, options: TestOptions.DebugDll); 8353var comp = CreateCompilationWithMscorlib45(source, references: s_valueTupleRefs, options: TestOptions.DebugDll); 8409var comp = CreateCompilationWithMscorlib45(source, references: s_valueTupleRefs, options: TestOptions.DebugDll); 8432var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); // no ValueTuple reference 8444var missing = CreateCompilationWithMscorlib45(missing_cs, options: TestOptions.DebugDll, assemblyName: "missing"); 8447var lib = CreateCompilationWithMscorlib45(lib_cs, references: new[] { missing.EmitToImageReference() }, options: TestOptions.DebugDll); 8461var comp = CreateCompilationWithMscorlib45(source, references: new[] { lib.EmitToImageReference() }, options: TestOptions.DebugDll); // no ValueTuple reference 8473var missing = CreateCompilationWithMscorlib45(missing_cs, options: TestOptions.DebugDll, assemblyName: "missing"); 8476var lib = CreateCompilationWithMscorlib45(lib_cs, references: new[] { missing.ToMetadataReference() }, options: TestOptions.DebugDll); 8490var comp = CreateCompilationWithMscorlib45(source, references: new[] { lib.ToMetadataReference() }, options: TestOptions.DebugDll); // no ValueTuple reference
CodeGen\CodeGenDynamicTests.cs (1)
41var unoptimizedCompilation = CreateCompilationWithMscorlib45(source, references, parseOptions: parseOptions, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All).WithAllowUnsafe(allowUnsafe));
CodeGen\CodeGenFieldInitTests.cs (1)
569options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
CodeGen\CodeGenInterfaceImplementation.cs (2)
2639var comp = CreateCompilationWithILAndMscorlib40(source, il, options: TestOptions.DebugDll); 2734var comp = CreateCompilationWithILAndMscorlib40(source, il, options: TestOptions.DebugDll);
CodeGen\CodeGenIterators.cs (3)
1193var dbg = CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1249CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1293CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module =>
CodeGen\CodeGenLocalFunctionTests.cs (16)
5228options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5277options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5318options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5351options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5385options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5418options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5621options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5627options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5673options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5739options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5814options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5889options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5957options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 5997options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 6053options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 6110options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
CodeGen\CodeGenNullCoalescingAssignmentTests.cs (1)
126CompileAndVerify(source, options: TestOptions.DebugDll).VerifyIL("C.TestObject()", expectedIL: @"
CodeGen\CodeGenRefLocalTests.cs (26)
1659CompileAndVerify(text, options: TestOptions.DebugDll).VerifyIL("Program.M()", @" 1687CompileAndVerify(text, options: TestOptions.DebugDll).VerifyIL("Program.M(ref int)", @" 1713CompileAndVerify(text, options: TestOptions.DebugDll).VerifyIL("Program.M(out int)", @" 1742CompileAndVerify(text, options: TestOptions.DebugDll).VerifyIL("Program.M(ref int)", @" 1773CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails).VerifyIL("Program.M()", @" 1806var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 1877var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 1967var comp = CompileAndVerify(text, options: TestOptions.DebugDll); 2029var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 2096var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 2178var comp = CompileAndVerify(text, options: TestOptions.DebugDll); 2239CompileAndVerify(text, options: TestOptions.DebugDll).VerifyIL("Program.M()", @" 2273var comp = CompileAndVerify(text, options: TestOptions.DebugDll); 2314CompileAndVerify(text, options: TestOptions.DebugDll).VerifyIL("Program.M()", @" 2349var comp = CompileAndVerify(text, options: TestOptions.DebugDll); 2400var comp = CompileAndVerify(text, options: TestOptions.DebugDll); 2444CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails).VerifyIL("Program.M()", @" 2481var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 2552var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 2649var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 2719CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails).VerifyIL("Program.M(ref int, ref int, object)", @" 2759var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 2836var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 2942var comp = CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails); 3022CompileAndVerify(text, options: TestOptions.DebugDll).VerifyIL("Program.M(D)", @" 3051CompileAndVerify(text, options: TestOptions.DebugDll, verify: Verification.Fails).VerifyIL("Program.M(D, ref int, ref int, object)", @"
CodeGen\CodeGenRefReturnTests.cs (1)
2480var compilation = CreateCompilation("", options: TestOptions.DebugDll, references: new[] { ref1 });
CodeGen\CodeGenTests.cs (6)
81var result = CompileAndVerify(source, verify: Verification.FailsILVerify, options: TestOptions.DebugDll); 169var result = CompileAndVerify(source, verify: Verification.FailsILVerify, options: TestOptions.DebugDll); 239var result = CompileAndVerify(source, options: TestOptions.DebugDll); 300var result = CompileAndVerify(source, options: TestOptions.DebugDll); 607var compilation = CreateCompilationWithILAndMscorlib40(source, il, TargetFramework.Mscorlib45, options: TestOptions.DebugDll); 925options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
CodeGen\CodeGenTupleTest.cs (12)
3879var comp = CreateCompilationWithMscorlib40(source, references: new[] { ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7_1); 21298options: TestOptions.DebugDll); 21310options: TestOptions.DebugDll); 21326options: TestOptions.DebugDll); 23451var libComp = CreateCompilationWithMscorlib45AndCSharp(lib, references: s_valueTupleRefs, options: TestOptions.DebugDll); 23505var libComp = CreateCompilationWithMscorlib45AndCSharp(lib, options: TestOptions.DebugDll, references: s_valueTupleRefs); 23907var libComp = CreateCompilationWithMscorlib45AndCSharp(lib, references: s_valueTupleRefs, options: TestOptions.DebugDll); 25362var libWithVT = CreateEmptyCompilation(valuetuple_cs, references: new[] { corlibWithoutVTRef }, parseOptions: parseOptions, options: TestOptions.DebugDll); 27575var comp0 = CreateCompilation(new[] { source0, source1 }, options: TestOptions.DebugDll); 27578var comp1 = CreateCompilation(source0, options: TestOptions.DebugDll); 27581var comp2 = CreateCompilation(source1, references: new[] { comp1.EmitToImageReference() }, options: TestOptions.DebugDll); 27601var comp = CreateCompilation(new[] { source }, options: TestOptions.DebugDll);
CodeGen\EventTests.cs (1)
842var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
CodeGen\GotoTest.cs (1)
1019var options = TestOptions.DebugDll.WithSourceReferenceResolver(resolver);
CodeGen\ITuplePatternTests.cs (1)
229var verifier = CompileAndVerify(CreatePatternCompilation(source, TestOptions.DebugDll));
CodeGen\PatternTests.cs (2)
333var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 6561var verifier = CompileAndVerify(source, options: TestOptions.DebugDll);
CodeGen\PropertyTests.cs (1)
30var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
CodeGen\SwitchTests.cs (19)
8809options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 8882options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 8952options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9022options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9093options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9167options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9242options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9319options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9385options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9476options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9625options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9723options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9774options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9829options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9882options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 9934options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication), 10027options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication)) 10246options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication).WithMetadataImportOptions(MetadataImportOptions.All)); 10520options: TestOptions.DebugDll.WithOutputKind(OutputKind.ConsoleApplication))
CodeGen\UnsafeTests.cs (2)
5274var missing = CreateCompilationWithMscorlib45(missing_cs, options: TestOptions.DebugDll, assemblyName: "missing"); 5285var lib = CreateCompilationWithMscorlib45(lib_cs, references: new[] { missing.EmitToImageReference() }, options: TestOptions.DebugDll);
Emit\CompilationEmitTests.cs (50)
897options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 1051var comp = CreateCompilation(source, options: TestOptions.DebugDll, 1205CSharpCompilation comp1 = CreateCompilation(Parse(source1), options: TestOptions.DebugDll.WithDeterministic(true), assemblyName: name); 1209Compilation comp2 = CreateCompilation(Parse(source2), options: TestOptions.DebugDll.WithDeterministic(true), assemblyName: name); 1281var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithDeterministic(true), assemblyName: name); 1294var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithDeterministic(true), assemblyName: name); 1310options: TestOptions.DebugDll.WithDeterministic(true).WithOutputKind(OutputKind.NetModule)); 1888options: TestOptions.DebugDll.WithDeterministic(true), assemblyName: name); 1893options: TestOptions.DebugDll.WithAllowUnsafe(true)); 1904var options = TestOptions.DebugDll.WithDeterministic(false); 2096options: TestOptions.DebugDll.WithDeterministic(true), assemblyName: name); 2125options: TestOptions.DebugDll.WithDeterministic(true)); 2133options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2164options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2192options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2221options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2263options: TestOptions.DebugDll.WithDeterministic(true)); 2270options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2280options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2292options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2330options: TestOptions.DebugDll.WithDeterministic(true)); 2337options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2347options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2359options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2397options: TestOptions.DebugDll.WithDeterministic(true)); 2404options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2414options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2426options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2457options: TestOptions.DebugDll.WithDeterministic(true)); 2465options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2502options: TestOptions.DebugDll.WithDeterministic(true)); 2510options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2524options: TestOptions.DebugDll.WithDeterministic(true)); 2538options: TestOptions.DebugDll.WithDeterministic(true)); 2552options: TestOptions.DebugDll.WithDeterministic(true)); 2567options: TestOptions.DebugDll.WithDeterministic(true)); 2580options: TestOptions.DebugDll.WithDeterministic(true).WithOutputKind(OutputKind.NetModule)); 2594options: TestOptions.DebugDll.WithDeterministic(true).WithOutputKind(OutputKind.NetModule)); 2607options: TestOptions.DebugDll); 2633options: TestOptions.DebugDll); 2653options: TestOptions.DebugDll.WithDeterministic(true)); 3523options: TestOptions.DebugDll.WithPlatform(Platform.X86)); 3557options: TestOptions.DebugDll.WithPlatform(Platform.X64)); 3607options: TestOptions.DebugDll.WithPlatform(Platform.Arm)); 5038var comp = CreateEmptyCompilation("", new[] { TestReferences.SymbolsTests.netModule.x64COFF }, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 5201var compilation = CreateCompilation(source, null, TestOptions.DebugDll); 5566var options = TestOptions.DebugDll.WithGeneralDiagnosticOption(ReportDiagnostic.Error); 5574var options = TestOptions.DebugDll.WithSpecificDiagnosticOptions("CS0169", ReportDiagnostic.Error); 5611var options = TestOptions.DebugDll.WithGeneralDiagnosticOption(ReportDiagnostic.Error); 5619var options = TestOptions.DebugDll.WithSpecificDiagnosticOptions("CS0612", ReportDiagnostic.Error);
Emit\DeterministicTests.cs (4)
77options: TestOptions.DebugDll.WithDeterministic(true)); 82options: TestOptions.DebugDll.WithDeterministic(false)); 175var mvid1 = CompiledGuid(source.Replace("CHANGE", ""), "X1", TestOptions.DebugDll, emitRefAssembly); 176var mvid2 = CompiledGuid(source.Replace("CHANGE", "private void M() { }"), "X1", TestOptions.DebugDll, emitRefAssembly);
Emit\DynamicAnalysis\DynamicAnalysisResourceTests.cs (1)
1022options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Emit\EditAndContinue\AssemblyReferencesTests.cs (13)
202var lib0 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 205var lib1 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 208var lib2 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 211var compilation0 = CreateEmptyCompilation(src0, new[] { MscorlibRef, lib0.ToMetadataReference() }, assemblyName: "C", options: TestOptions.DebugDll); 301var lib0 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 306var lib1 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 310var lib2 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 315var compilation0 = CreateEmptyCompilation(src0, new[] { MscorlibRef, lib0.ToMetadataReference() }, assemblyName: "C", options: TestOptions.DebugDll); 386var lib0 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 390var lib1 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 394var lib2 = CreateCompilation(srcLib, assemblyName: "Lib", options: TestOptions.DebugDll); 398var compilation0 = CreateEmptyCompilation(src0, new[] { MscorlibRef, lib0.EmitToImageReference() }, assemblyName: "C", options: TestOptions.DebugDll); 482var compilation0 = CreateEmptyCompilation(src0, new[] { MscorlibRef, ref01, ref11 }, assemblyName: "C", options: TestOptions.DebugDll);
Emit\EditAndContinue\EditAndContinueClosureTests.cs (3)
44var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 4552var compilation0 = CreateCompilation(source0.Tree, options: TestOptions.DebugDll); 4600var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20);
Emit\EditAndContinue\EditAndContinueStateMachineTests.cs (9)
46var compilation0 = CreateCompilation(Parse(source0, "a.cs", parseOptions), options: TestOptions.DebugDll); 227var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 344var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 446var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 519var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 570var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 641var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 715var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 852var compilation0 = CreateCompilationWithMscorlib45(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll);
Emit\EditAndContinue\EditAndContinueTest.cs (1)
36_options = options ?? TestOptions.DebugDll;
Emit\EditAndContinue\EditAndContinueTestBase.cs (1)
30protected readonly CSharpCompilationOptions ComSafeDebugDll = TestOptions.DebugDll.WithConcurrentBuild(false);
Emit\EditAndContinue\EditAndContinueTests.cs (70)
146var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 192var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 454var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 1860var compilation0 = CreateCompilation(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 2178var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 2462var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 2859var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 2921var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 2986var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 4224var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 4782var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 4905var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 5153var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 5238var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 5319var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 5429var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 5484var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 5656var compilation0 = CreateCompilation(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 5726var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 5803var compilation0 = CreateCompilation(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 5885var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50); 6076var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 6219var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 6283var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 6340var compilation0 = CreateCompilation(Parse(source0, "a.cs", parseOptions), options: TestOptions.DebugDll); 6447var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 6505var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 6546var compilation0 = CreateCompilation(parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, source: 7278var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7353var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll.WithModuleName("MODULE")); 7503var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 7719var compilation0 = CreateCompilation(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 7804var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 7890var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 8022var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 8235var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 8324var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 8372var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8567var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 8902var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 9012var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 9297var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 9414var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 10081var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 10151var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 10224var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 10291var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 10415var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 10472var compilation0 = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 10538var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, references: new[] { CSharpRef }); 10924var compilationPIA = CreateCompilation(sourcePIA, options: TestOptions.DebugDll); 10977var compilationPIA = CreateCompilation(sourcePIA, options: TestOptions.DebugDll); 11063var compilationPIA = CreateCompilation(sourcePIA, options: TestOptions.DebugDll); 11065var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular10, options: TestOptions.DebugDll, references: new MetadataReference[] { referencePIA, CSharpRef }); 11151var compilationPIA = CreateCompilation(sourcePIA, options: TestOptions.DebugDll); 11153var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, references: new MetadataReference[] { referencePIA, CSharpRef }); 11271var compilation0 = CreateCompilation(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 11378var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 11450var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 11535var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 11583var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 11629var compilation0 = CreateCompilation(source0, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetStandard20); 11694var compilationA0 = CreateCompilation(sourceA0, options: TestOptions.DebugDll, assemblyName: "LibA"); 11696var compilationB0 = CreateCompilation(sourceB0, new[] { compilationA0.ToMetadataReference() }, options: TestOptions.DebugDll, assemblyName: "LibB"); 11697var compilationB1 = CreateCompilation(sourceB1, new[] { compilationA1.ToMetadataReference() }, options: TestOptions.DebugDll, assemblyName: "LibB"); 11759var compilationA = CreateCompilation(sourceA, options: TestOptions.DebugDll, assemblyName: "AssemblyA"); 11762var compilationB0 = CreateCompilation(sourceB0, new[] { aRef }, options: TestOptions.DebugDll, assemblyName: "AssemblyB"); 11879var compilation0 = CreateCompilation(String.Format(source, 1), options: TestOptions.DebugDll); 11925var compilation0 = CreateCompilation(source0.Tree, options: TestOptions.DebugDll, assemblyName: "PdbReadingErrorsAssembly"); 11972var compilation0 = CreateCompilation(source0.Tree, options: TestOptions.DebugDll, assemblyName: "PdbReadingErrorsAssembly");
Emit\EditAndContinue\LocalSlotMappingTests.cs (43)
47var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 340var debug = CreateCompilation(source, options: TestOptions.DebugDll); 426var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 530var compilation0 = CreateCompilation(source0.Tree, options: TestOptions.DebugDll); 642var compilation0 = CreateCompilation(source0.Tree, options: TestOptions.DebugDll); 752var compilation0 = CreateCompilationWithTasksExtensions(new[] { source0.Tree, asyncStreamsTree }, options: TestOptions.DebugDll); 845var compilation0 = CreateCompilationWithTasksExtensions(new[] { source0.Tree, asyncStreamsTree }, options: TestOptions.DebugDll); 930var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1024var compilation0 = CreateEmptyCompilation(source, options: TestOptions.DebugDll, references: new[] { MscorlibRef_v20 }); 1025var compilation1 = CreateEmptyCompilation(source, options: TestOptions.DebugDll, references: new[] { MscorlibRef_v20 }); 1357var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1540var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1725var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1885var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1917options: TestOptions.DebugDll, 2025var compilation0 = CreateCompilation(source0.Tree, options: TestOptions.DebugDll); 2071var compilation1 = CreateCompilation(source1.Tree, options: TestOptions.DebugDll); 2218var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2295var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll); 2475var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2613var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2758var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2867var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2994var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3208var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 3315var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 3428var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 3536var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 3628var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3847var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3956var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 4110var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4157var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4213var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4268var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4320var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4376var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4445var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4525var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4618var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4679var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4739var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4828var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll);
Emit\EditAndContinue\SymbolMatcherTests.cs (49)
29var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 57var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 129var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 164var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 197var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, references: new[] { metadataRef }); 247var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 301var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll).WithSource(source1); 335var lib0 = CreateCompilation(libSource, options: TestOptions.DebugDll, assemblyName: "Lib"); 336var lib1 = CreateCompilation(libSource, options: TestOptions.DebugDll, assemblyName: "Lib"); 338var compilation0 = CreateCompilation(source, new[] { lib0.ToMetadataReference() }, options: TestOptions.DebugDll); 381var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 421var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 462var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 506var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 565var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll); 620var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 635var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll); 674var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 707var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 740var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 773var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 806var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 839var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 872var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 905var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 938var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 971var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1018var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1075var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1125var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1130var compilation1 = CreateCompilation(source, options: TestOptions.DebugDll); 1167var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1201var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1235var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1267var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1320var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1334var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll); 1381var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1574var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1605var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1637var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1667var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1702var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 1768var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll); 2007var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2058var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2119var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2175var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2229var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll);
Emit\EmitErrorTests.cs (1)
306var compilation1 = CreateCompilation(builder.ToString(), null, TestOptions.DebugDll.WithSpecificDiagnosticOptions(warnOpts));
Emit\EmitMetadataTests.cs (2)
230options: TestOptions.DebugDll.WithOutputKind(OutputKind.NetModule)); 2713options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Emit\NoPiaEmbedTypes.cs (13)
171var piaCompilation = CreateCompilation(pia, options: TestOptions.DebugDll); 228var piaCompilation = CreateCompilation(pia, options: TestOptions.DebugDll); 297var piaCompilation = CreateCompilation(pia, options: TestOptions.DebugDll); 350var piaCompilation = CreateCompilation(pia, options: TestOptions.DebugDll); 847var piaCompilation = CreateEmptyCompilation(pia, new MetadataReference[] { MscorlibRef_v20 }, options: TestOptions.DebugDll); 1860var piaCompilation = CreateCompilation(pia, options: TestOptions.DebugDll); 1951var piaCompilation = CreateEmptyCompilation(pia, new MetadataReference[] { MscorlibRef_v4_0_30316_17626 }, options: TestOptions.DebugDll); 4625var piaCompilation1 = CreateCompilation(pia1, options: TestOptions.DebugDll, assemblyName: "Pia1"); 4645var piaCompilation2 = CreateCompilation(pia2, options: TestOptions.DebugDll, assemblyName: "Pia2", 4776var piaCompilation1 = CreateCompilation(pia1, options: TestOptions.DebugDll, assemblyName: "Pia1"); 4797var piaCompilation2 = CreateCompilation(pia2, options: TestOptions.DebugDll, assemblyName: "Pia2", 5101var piaCompilation1 = CreateCompilation(pia1, options: TestOptions.DebugDll, assemblyName: "Pia1"); 5122var piaCompilation2 = CreateCompilation(pia2, options: TestOptions.DebugDll, assemblyName: "Pia2",
Emit\OptionalArgumentsTests.cs (1)
144var comp1 = CreateCompilation(source1, options: TestOptions.DebugDll);
PDB\CheckSumTest.cs (2)
26TestOptions.DebugDll.WithSourceReferenceResolver(new SourceFileResolver(ImmutableArray.Create<string>(), baseDirectory))); 304TestOptions.DebugDll.WithSourceReferenceResolver(null));
PDB\CSharpDeterministicBuildCompilationTests.cs (6)
129}", options: TestOptions.DebugDll); 134}", options: TestOptions.DebugDll); 189}", options: TestOptions.DebugDll); 194}", options: TestOptions.DebugDll); 253}", options: TestOptions.DebugDll); 258}", options: TestOptions.DebugDll);
PDB\PDBAsyncTests.cs (14)
70var compilation = CreateCompilationWithMscorlib45(text, options: TestOptions.DebugDll).VerifyDiagnostics(); 386var compilation = CreateCompilationWithMscorlib45(text, options: TestOptions.DebugDll).VerifyDiagnostics(); 545options: TestOptions.DebugDll, 621var v = CompileAndVerify(CreateCompilationWithMscorlib45(text, options: TestOptions.DebugDll)); 847var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 1039var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 1259var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 1366var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, new[] { SystemCoreRef, CSharpRef }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 1550var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, new[] { SystemCoreRef, CSharpRef }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 1658var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 1694var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, new[] { SystemCoreRef, CSharpRef }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 1948var v = CompileAndVerify(CreateCompilationWithMscorlib45(source, new[] { SystemCoreRef, CSharpRef }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)), symbolValidator: module => 2017var compilation = CreateCompilationWithMscorlib45(src, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 2100var v = CreateEmptyCompilation(src, LatestVbReferences, options: TestOptions.DebugDll);
PDB\PDBConstantTests.cs (11)
34var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 100var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 209var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 287CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb("C.M", @" 337var c = CompileAndVerify(text, options: TestOptions.DebugDll); 409var v = CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 487CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb("C.M", @" 609var c = CompileAndVerify(text, options: TestOptions.DebugDll); 666var c = CompileAndVerify(text, options: TestOptions.DebugDll); 726var c = CompileAndVerify(text, options: TestOptions.DebugDll); 781CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb("C.M", @"
PDB\PDBDynamicLocalsTests.cs (30)
44var c = CreateCompilationWithMscorlib40AndSystemCore(source, references: new[] { CSharpRef }, options: TestOptions.DebugDll); 132var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 198var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 257var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 322var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 378var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 436var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 512var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 594var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 661var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 749var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 829var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 911var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 997var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1123var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1271var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1520var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1693var c = CreateCompilation(source, options: TestOptions.DebugDll); 1763var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1817var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1867var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1925var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1983var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2042var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2102var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2156var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2211var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2275var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2337var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2397var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll);
PDB\PDBEmbeddedSourceTests.cs (2)
44var c = CreateCompilation(new[] { tree1, tree2 }, options: TestOptions.DebugDll); 104var c = CreateCompilation(tree, options: TestOptions.DebugDll);
PDB\PDBIteratorTests.cs (14)
34var c = CreateCompilationWithMscorlib40AndSystemCore(text, options: TestOptions.DebugDll); 79var c = CreateCompilationWithMscorlib40AndSystemCore(text, options: TestOptions.DebugDll); 124var c = CreateCompilationWithMscorlib40AndSystemCore(text, options: TestOptions.DebugDll); 251var c = CompileAndVerify(text, options: TestOptions.DebugDll, symbolValidator: module => 339var c = CreateCompilationWithMscorlib40AndSystemCore(text, options: TestOptions.DebugDll); 736var v = CompileAndVerify(text, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 807var v = CompileAndVerify(text, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 931var v = CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1027var v = CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1225var v = CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1371var v = CompileAndVerify(source, new[] { CSharpRef }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1519var v = CompileAndVerify(source, new[] { CSharpRef }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: module => 1587var c = CreateCompilationWithMscorlib40AndSystemCore(text, options: TestOptions.DebugDll); 1624var compilation = CreateCompilation(src, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp);
PDB\PDBLambdaTests.cs (29)
35var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 109var compilation = CreateCompilationWithMscorlib40AndSystemCore(source.Tree, options: TestOptions.DebugDll); 129var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 203var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 319var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 439var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 553var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 638var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 748var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 827var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 912var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 992var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1068var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1156var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1229var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1301var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1377var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1447var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1523var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1599var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1675var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1759var v = CompileAndVerify(source, options: TestOptions.DebugDll); 1801var v = CompileAndVerify(source, options: TestOptions.DebugDll); 1847var compilation = CreateCompilation(source.Tree, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 1875var compilation = CreateCompilation(source.Tree, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 1909var compilation = CreateCompilation(source.Tree, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 1926var compilation = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2015var compilation = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2122var c = CompileAndVerify(source, options: TestOptions.DebugDll);
PDB\PDBLocalFunctionTests.cs (5)
42var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 157var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 235var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 326var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 407var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll);
PDB\PDBSourceLinkTests.cs (5)
51var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll); 81var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll); 121var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll); 143var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll); 185var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll);
PDB\PDBTests.cs (132)
87Compilation compilation = CreateCompilation("class C { }", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular); 133var comp = CSharpCompilation.Create("test", new[] { tree1, tree2 }, TargetFrameworkUtil.StandardReferences, TestOptions.DebugDll); 167options: TestOptions.DebugDll.WithSourceReferenceResolver(SourceFileResolver.Default)); 211options: TestOptions.DebugDll.WithSourceReferenceResolver(SourceFileResolver.Default)); 243var compilation = CreateCompilation(source0, options: TestOptions.DebugDll); 275var compilation = CreateCompilation(source0, options: TestOptions.DebugDll); 307var compilation = CreateCompilation(source0, options: TestOptions.DebugDll.WithDeterministic(true)); 560var c = CreateCompilation(source, options: TestOptions.DebugDll); 609var c1 = CreateCompilation(source1, options: TestOptions.DebugDll); 610var c2 = CreateCompilation(source2, options: TestOptions.DebugDll); 657var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 714var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 750var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 791var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 845var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 910var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 978var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1152var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1239var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1335var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1403var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1479var v = CompileAndVerify(source, options: TestOptions.DebugDll); 1534var v = CompileAndVerify(source, options: TestOptions.DebugDll); 1589var v = CompileAndVerify(source, options: TestOptions.DebugDll); 1611var v = CompileAndVerify(source, options: TestOptions.DebugDll); 1644var v = CompileAndVerify(source, options: TestOptions.DebugDll); 1741var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1935var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 1986var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2028var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2138var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2209var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2305var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2443var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2501var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2583var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2633var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2778var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2890var v = CompileAndVerify(source, options: TestOptions.DebugDll.WithModuleName("MODULE")); 3018var v = CompileAndVerify(source, options: TestOptions.DebugDll); 3107var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3179var c = CreateCompilation(source, options: TestOptions.DebugDll); 3340var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3431var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3530var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3991var v = CompileAndVerify(source, options: TestOptions.DebugDll); 4081var v = CompileAndVerify(source, options: TestOptions.DebugDll); 4325var v = CompileAndVerify(source, options: TestOptions.DebugDll); 4447var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 4533var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 4638var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 4734}", TestOptions.DebugDll); 4744}", TestOptions.DebugDll); 4755}", TestOptions.DebugDll); 4767}", TestOptions.DebugDll); 4780}", TestOptions.DebugDll); 4809var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 4974var compilation = CreateCompilation(new[] { Parse(text1, "a.cs"), Parse(text2, "b.cs"), Parse(text3, "a.cs") }, options: TestOptions.DebugDll); 5021var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 5062var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 5101var comp = CreateCompilation(source, options: TestOptions.DebugDll); 5152}", TestOptions.DebugDll); 5160}", TestOptions.DebugDll); 5168}", TestOptions.DebugDll); 5176}", TestOptions.DebugDll, TestOptions.Regular); 5194var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 5228var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 5311var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 5460var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 5538var v = CompileAndVerify(CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll)); 5687var v = CompileAndVerify(CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll)); 5776var v = CompileAndVerify(CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll)); 5947var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6016var c = CreateCompilation(source, options: TestOptions.DebugDll); 6133var c = CreateCompilation(source, options: TestOptions.DebugDll); 6259var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6352var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6439var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6500var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6564var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6648var c = CreateCompilation(source, options: TestOptions.DebugDll); 6763var c = CreateCompilation(source, options: TestOptions.DebugDll); 6865var c = CreateCompilation(source, options: TestOptions.DebugDll); 6976var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 7017var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 7660var compilation = CreateCompilation(text1, options: TestOptions.DebugDll); 7766var c = CreateCompilationWithMscorlib40AndSystemCore(src, references: new[] { CSharpRef, ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll); 7867var c = CreateCompilationWithMscorlib40AndSystemCore(src, references: new[] { CSharpRef, ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll); 8319var c = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, references: new[] { SystemCoreRef }); 8364var c = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, references: new[] { SystemCoreRef }); 8419var c = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, references: new[] { SystemCoreRef }); 8471var c = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, references: new[] { SystemCoreRef }); 8531var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 8613var c = CreateCompilation(source, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 9010var c = CreateCompilation(source, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 9377var c = CreateCompilation(source, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 9606var c = CreateCompilation(source, options: TestOptions.DebugDll); 10001var verifier = CompileAndVerify(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 10210var verifier = CompileAndVerify(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 10448var c = CreateCompilation(source, options: TestOptions.DebugDll); 10619var c = CreateCompilation(source, options: TestOptions.DebugDll); 10759var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 10823var c = CreateCompilation(source, options: TestOptions.DebugDll); 10910var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11087var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, references: s_valueTupleRefs); 11189var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, references: s_valueTupleRefs); 11238var c = CreateCompilation(source, options: TestOptions.DebugDll); 11272var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, references: s_valueTupleRefs); 11308var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, references: s_valueTupleRefs); 11343var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, references: s_valueTupleRefs); 11409var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11424var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11489var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11556var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11614var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11672var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11749var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11823var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 11968var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 12046var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 12137var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 12225var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 12291var c = CSharpCompilation.Create("Compilation", new[] { tree }, new[] { MscorlibRef_v46 }, options: TestOptions.DebugDll.WithDebugPlusMode(true)); 12387options: TestOptions.DebugDll); 12451var c = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 12524var v = CompileAndVerify(source, options: TestOptions.DebugDll); 12608var v = CompileAndVerify(source, options: TestOptions.DebugDll); 12689var v = CompileAndVerify(source, options: TestOptions.DebugDll); 12781var v = CompileAndVerify(source, options: TestOptions.DebugDll); 12894var c = CreateCompilation(new[] { tree1, tree2 }, options: TestOptions.DebugDll); 12932var c = CreateCompilation(new[] { tree }, options: TestOptions.DebugDll); 12955options: TestOptions.DebugDll);
PDB\PDBTupleTests.cs (6)
27var comp = CreateCompilation(source, options: TestOptions.DebugDll); 74var comp = CreateCompilation(source, options: TestOptions.DebugDll); 126var comp = CreateCompilation(source, options: TestOptions.DebugDll); 193var comp = CreateCompilation(source, options: TestOptions.DebugDll); 244var comp = CreateCompilation(source, options: TestOptions.DebugDll); 310var c = CreateCompilation(source, options: TestOptions.DebugDll);
PDB\PDBUsingTests.cs (32)
33options: TestOptions.DebugDll); 60CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 140CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 220CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 300CompileAndVerify(text, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetFramework).VerifyPdb(@" 380CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 574options: TestOptions.DebugDll, 664var compilation1 = CreateCompilation(source1, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, assemblyName: "TestExternAliases2"); 674options: TestOptions.DebugDll, 717var compilation1 = CreateCompilation(source1, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, assemblyName: "TestExternAliases3"); 727options: TestOptions.DebugDll, 771var dummyCompilation = CreateCompilation(src1, assemblyName: "A", options: TestOptions.DebugDll); 790options: TestOptions.DebugDll, 818comp = CreateCompilation(sourceB, references: new[] { refA }, options: TestOptions.DebugDll); 856CSharpCompilation dummyCompilation1 = CreateCompilation(dummySource, assemblyName: "A", options: TestOptions.DebugDll); 857CSharpCompilation dummyCompilation2 = CreateCompilation(dummySource, assemblyName: "B", options: TestOptions.DebugDll); 870options: TestOptions.DebugDll, 943options: TestOptions.DebugDll, 1017options: TestOptions.DebugDll, 1150var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll); 1173options: TestOptions.DebugDll, 1223var compilation1 = CreateCompilation(source1, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll); 1241options: TestOptions.DebugDll, 1323options: TestOptions.DebugDll, 1501options: TestOptions.DebugDll, 1668CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 1717CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 1798CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 1902CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 1960CompileAndVerify(text, options: TestOptions.DebugDll).VerifyPdb(@" 2016var v = CompileAndVerify(source, options: TestOptions.DebugDll); 2292var comp1 = CreateCompilation(source1, options: TestOptions.DebugDll, assemblyName: "Comp1");
PDB\PortablePdbTests.cs (6)
42var c = CreateCompilation(source, options: TestOptions.DebugDll); 166var c = CreateCompilation(Parse(source, "goo.cs"), options: TestOptions.DebugDll); 226var c = CreateCompilation(Parse(source, "goo.cs"), options: TestOptions.DebugDll.WithDeterministic(true)); 301var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll); 342var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll); 381var c = CreateCompilation(Parse(source, "f:/build/goo.cs"), options: TestOptions.DebugDll);
PDB\TypeDefinitionDocumentTests.cs (1)
464var compilation = CreateCompilation(trees, options: TestOptions.DebugDll);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (115)
Attributes\AttributeTests.cs (15)
40var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithDeterministic(true)); 643}", options: TestOptions.DebugDll); 1799options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 1833options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 1894options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 1957options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2176options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2242options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2313options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 2445options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 9692var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 9721var compilation1 = CreateCompilationWithMscorlib40(source1, options: TestOptions.DebugDll); 9734var compilation2 = CreateCompilationWithMscorlib40(source2, new[] { new CSharpCompilationReference(compilation1) }, options: TestOptions.DebugDll, assemblyName: "Test.dll"); 9745var compilation3 = CreateCompilationWithMscorlib45(source2, new[] { new CSharpCompilationReference(compilation1) }, options: TestOptions.DebugDll); 10710var verifier = CompileAndVerify(source, symbolValidator: validateMetadata, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
Attributes\AttributeTests_Dynamic.cs (4)
822options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 853options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 888options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 910options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Attributes\AttributeTests_IsByRefLike.cs (3)
356var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 452var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 606var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All);
Attributes\AttributeTests_IsUnmanaged.cs (5)
626var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 722var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 771CreateCompilation(text, options: TestOptions.DebugDll.WithOutputKind(outputKind)).VerifyDiagnostics( 794CreateCompilation(text, options: TestOptions.DebugDll.WithOutputKind(outputKind)).VerifyDiagnostics( 814CreateCompilation(text, options: TestOptions.DebugDll.WithOutputKind(outputKind)).VerifyDiagnostics(
Attributes\AttributeTests_LifetimeAnnotation.cs (4)
454options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 491options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 518options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 554options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Attributes\AttributeTests_MarshalAs.cs (1)
32options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
Attributes\AttributeTests_NativeInteger.cs (4)
1081options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 1105options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 1128options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 1152options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Attributes\AttributeTests_Nullable.cs (8)
2166options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2193options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2220options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2273options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2297options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2506options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2531options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2557options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Attributes\AttributeTests_ReadOnlyStruct.cs (3)
346var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 444var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 598var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All);
Attributes\AttributeTests_RefReadOnly.cs (15)
594var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 622var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 648var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 682var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 721var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 753var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 780var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 815var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 1051var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 1169var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 1325var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 2342options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2366options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2389options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 2413options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Attributes\AttributeTests_Security.cs (1)
1586CreateCompilationWithMscorlib40(source, options: TestOptions.DebugDll.WithXmlReferenceResolver(resolver)).VerifyDiagnostics(
Attributes\AttributeTests_Synthesized.cs (1)
371var comp = CreateCompilation(source, options: TestOptions.DebugDll);
Attributes\AttributeTests_WellKnownAttributes.cs (11)
8701verify(TestOptions.DebugDll.WithGeneralDiagnosticOption(ReportDiagnostic.Warn), 8707verify(TestOptions.DebugDll.WithGeneralDiagnosticOption(ReportDiagnostic.Error), 8713verify(TestOptions.DebugDll.WithGeneralDiagnosticOption(ReportDiagnostic.Hidden), 8718verify(TestOptions.DebugDll.WithGeneralDiagnosticOption(ReportDiagnostic.Suppress)); 8721verify(TestOptions.DebugDll.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add("TEST1", ReportDiagnostic.Warn)), 8727verify(TestOptions.DebugDll.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add("TEST1", ReportDiagnostic.Error)), 8733verify(TestOptions.DebugDll.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add("TEST1", ReportDiagnostic.Hidden)), 8739verify(TestOptions.DebugDll.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add("TEST1", ReportDiagnostic.Suppress))); 8742verify(TestOptions.DebugDll.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add("CS0618", ReportDiagnostic.Error)), 8748verify(TestOptions.DebugDll.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add("CS0618", ReportDiagnostic.Suppress)), 12728var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithAllowUnsafe(true));
Attributes\EmitTestStrongNameProvider.cs (2)
33var options = TestOptions.DebugDll 53var options = TestOptions.DebugDll
Attributes\InternalsVisibleToAndStrongNameTests.cs (4)
2758var options = TestOptions.DebugDll; 2770var options = TestOptions.DebugDll.WithCryptoKeyFile(string.Empty); 2781var options = TestOptions.DebugDll.WithPublicSign(true); 2793var options = TestOptions.DebugDll.WithCryptoKeyFile(string.Empty).WithPublicSign(true);
Diagnostics\DiagnosticAnalyzerTests.cs (5)
3292var options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider( 3335var options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider( 3387var options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider( 3439var options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider( 3460options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider(
Diagnostics\DiagnosticSuppressorTests.cs (1)
578var options = TestOptions.DebugDll.WithConcurrentBuild(concurrent);
FlowAnalysis\FlowDiagnosticTests.cs (1)
1449comp = CreateCompilation(text, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings), parseOptions: TestOptions.Regular11);
Semantics\PatternMatchingTests.cs (9)
3714var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 3773var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 4245var compilation = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular); 4339CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7_3).VerifyDiagnostics( 4347CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular8).VerifyDiagnostics( 4379var compilation = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 5248CreateCompilation(program, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7).VerifyDiagnostics( 5256CreateCompilation(program, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7_1).VerifyDiagnostics( 6157var compilation = CreateCompilation(program, options: TestOptions.DebugDll.WithAllowUnsafe(true));
Semantics\PatternMatchingTests_ListPatterns.cs (1)
7652var verifier = CompileAndVerify(new[] { source, TestSources.Index }, options: TestOptions.DebugDll, verify: Verification.FailsILVerify);
Semantics\PatternMatchingTests_Scope.cs (1)
3420var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
Semantics\PatternMatchingTests3.cs (6)
501var compilation = CreateCompilationWithMscorlibAndSpan(source, options: TestOptions.DebugDll); 522var compilation = CreateCompilationWithMscorlibAndSpan(source, options: TestOptions.DebugDll); 540var compilation = CreateCompilationWithMscorlibAndSpan(source, options: TestOptions.DebugDll); 4101var compilation = CreatePatternCompilation(source, options: TestOptions.DebugDll); 4328var compilation = CreatePatternCompilation(source, options: TestOptions.DebugDll); 4875var compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.CSharp9));
Semantics\PatternMatchingTests4.cs (6)
3431var compilation = CreatePatternCompilation(source, options: TestOptions.DebugDll.WithAllowUnsafe(true)); 3466var compilation = CreatePatternCompilation(source, options: TestOptions.DebugDll.WithAllowUnsafe(true)); 3667var compilation = CreatePatternCompilation(source, options: TestOptions.DebugDll); 3687var compilation = CreatePatternCompilation(source, options: TestOptions.DebugDll); 3714var compilation = CreatePatternCompilation(source, options: TestOptions.DebugDll); 4104var comp = CreatePatternCompilation(source, TestOptions.DebugDll);
Semantics\PatternMatchingTests5.cs (2)
3033var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(nullableEnable ? NullableContextOptions.Enable : NullableContextOptions.Disable)); 3130var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(nullableEnable ? NullableContextOptions.Enable : NullableContextOptions.Disable));
Semantics\PatternSwitchTests.cs (2)
899var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 1686var compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular8);
Microsoft.CodeAnalysis.CSharp.EndToEnd.UnitTests (3)
EndToEndTests.cs (3)
145var options = TestOptions.DebugDll.WithConcurrentBuild(false); 270var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithConcurrentBuild(false)); 310var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithConcurrentBuild(false));
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.UnitTests (454)
AccessibilityTests.cs (1)
143options: TestOptions.DebugDll,
CompileExpressionsTests.cs (22)
34var comp = CreateCompilation(source, options: TestOptions.DebugDll); 62var comp = CreateCompilation(source, options: TestOptions.DebugDll); 99var comp = CreateCompilation(source, options: TestOptions.DebugDll); 149var comp = CreateCompilation(source, options: TestOptions.DebugDll); 185var comp = CreateCompilation(source, options: TestOptions.DebugDll); 225var comp = CreateCompilation(source, options: TestOptions.DebugDll); 265var comp = CreateCompilation(source, options: TestOptions.DebugDll); 305var comp = CreateCompilation(source, options: TestOptions.DebugDll); 345var comp = CreateCompilation(source, options: TestOptions.DebugDll); 376var comp = CreateCompilation(source, options: TestOptions.DebugDll); 411var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 509var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, references: new[] { TestMetadata.Net40.SystemCore }); 728var comp = CreateCompilation(SyntaxFactory.ParseSyntaxTree(source, options: TestOptions.Regular11, path: "path/to/MyFile.cs", Encoding.Default), options: TestOptions.DebugDll); 789}, options: TestOptions.DebugDll); 857}, options: TestOptions.DebugDll); 914}, options: TestOptions.DebugDll); 948var comp = CreateCompilation(SyntaxFactory.ParseSyntaxTree(source, options: TestOptions.Regular11, path: "path/to/MyFile.cs", Encoding.Default), options: TestOptions.DebugDll); 994var comp = CreateCompilation(SyntaxFactory.ParseSyntaxTree(source, options: TestOptions.Regular11, path: "path/to/MyFile.cs", Encoding.Default), options: TestOptions.DebugDll); 1073options: TestOptions.DebugDll); 1154var comp = CreateCompilation(SyntaxFactory.ParseSyntaxTree(source, options: TestOptions.Regular11, path: "path/to/\uD800.cs", Encoding.Default), options: TestOptions.DebugDll); 1209options: TestOptions.DebugDll); 1393options: TestOptions.DebugDll);
DebuggerDisplayAttributeTests.cs (11)
36var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 93var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 123var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 159var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 191var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 244var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 296var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 333var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 356var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 387var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 428var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName());
DeclarationTests.cs (44)
38var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 96var comp = CreateCompilationWithMscorlib40(source, options: TestOptions.DebugDll, references: new[] { ValueTupleRef, SystemRuntimeFacadeRef }); 173var comp = CreateCompilationWithMscorlib40(source, options: TestOptions.DebugDll, references: new[] { ValueTupleRef, SystemRuntimeFacadeRef }); 249var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 305var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 373var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 430var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 490var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 561var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 601var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 666var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 714var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 761var compilation0 = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll); 809var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 833var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 858var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 883var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 908var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 970var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1055var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1080var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1106var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1131var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1155var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1180var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1234var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1280var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1327var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1381var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1433var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1463var comp = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1509var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1555var comp = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1598var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1645var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1690var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1772var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1840var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1907var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1970var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2029var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2099var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2168var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2195var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll);
DynamicTests.cs (21)
46var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 87var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 128var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 169var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 209var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 254var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 303var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 371var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 437var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 535var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 603var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 645var comp = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll); 684var comp = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll); 723var comp = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll); 771var comp = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll); 858var comp = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 937var comp = CreateCompilation(source, options: TestOptions.DebugDll); 974var comp = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll); 1041var comp = CreateCompilationWithCSharp(source, options: TestOptions.DebugDll); 1263var comp = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll); 1374var comp = CreateCompilation(source, new[] { CSharpRef }, TestOptions.DebugDll);
ExpressionCompilerTestBase.cs (1)
353options: (outputKind == OutputKind.DynamicallyLinkedLibrary) ? TestOptions.DebugDll : TestOptions.DebugExe,
ExpressionCompilerTests.cs (72)
46var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 96var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 124var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 165var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 263options: TestOptions.DebugDll, 325var compilationA = CreateCompilation(sourceA, options: TestOptions.DebugDll); 330options: TestOptions.DebugDll, 453var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 496var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 588var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 633var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 707var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1295var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1350var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1442options: TestOptions.DebugDll, 1498options: TestOptions.DebugDll, 1550options: TestOptions.DebugDll, 1596var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1739var compilation0 = CreateCompilation(source, parseOptions: TestOptions.Regular10, options: TestOptions.DebugDll); 1790var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1820var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1884var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1994var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2056var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2142var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2199var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2240var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2269var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2516var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2584var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2623var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3009var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3104var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3254var compilation0 = CreateCompilation(source, options: WithNullableEnable(TestOptions.DebugDll)); 3528var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll.WithModuleName("MODULE")); 3571var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3628var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3687var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3747var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3781var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 3817var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { netModuleRef }); 3899options: TestOptions.DebugDll, 3905options: TestOptions.DebugDll, 3911options: TestOptions.DebugDll, 4223var compilation = CreateCompilation(source, parseOptions: TestOptions.Regular10, options: TestOptions.DebugDll); 4483var comp = CreateCompilation(source, options: TestOptions.DebugDll); 4530var comp = CreateCompilation(source, options: TestOptions.DebugDll); 4603var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4704var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4740var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4836var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4905var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 5396var comp = CreateCompilation(source, options: TestOptions.DebugDll); 5434var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5466var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5499var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5534var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5570var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5601var comp = CreateCompilation(source, options: TestOptions.DebugDll); 5646var comp = CreateCompilation(source, new[] { libRef }, TestOptions.DebugDll); 5723var comp = CreateCompilation(source, new[] { libAv1Ref, libBv2Ref }, TestOptions.DebugDll); 5769var comp = CreateCompilation(source, options: TestOptions.DebugDll); 5829var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6012var comp1 = CreateCompilation(source1, options: TestOptions.DebugDll); 6013var comp2 = CreateCompilation(source2, options: TestOptions.DebugDll); 6102var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6157var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 6264var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6341var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 6421options: TestOptions.DebugDll, 6466var comp = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular); 6636var comp = CreateCompilation(source, options: TestOptions.DebugDll);
HoistedStateMachineLocalTests.cs (23)
112var comp = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 218var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 267var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 307var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 361var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 415var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 455var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 509var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 578var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 618var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 672var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 726var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 766var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 812var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 872var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 932var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 978var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1038var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1113var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1159var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1219var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1279var comp = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1342var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll);
HoistedThisTests.cs (14)
849var comp = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 852var dummyComp = CreateCompilation("", new[] { comp.EmitToImageReference() }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 912var comp = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 915var dummyComp = CreateCompilation("", new[] { comp.EmitToImageReference() }, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 935var sourceCompilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: ExpressionCompilerUtilities.GenerateUniqueName()); 1001var comp = CreateCompilationWithMscorlib45(source, new[] { SystemCoreRef }, options: TestOptions.DebugDll); 1045var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1080var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 1116var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1152var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1193var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 1235var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1429var comp1 = CreateCompilation(source, options: TestOptions.DebugDll); 1431var comp2 = CreateCompilation("", new[] { ref1 }, options: TestOptions.DebugDll);
InstructionDecoderTests.cs (1)
445var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, assemblyName: nameof(InstructionDecoderTests));
LocalFunctionTests.cs (8)
35var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 66var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 116var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 178var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 239var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 292var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 319var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 362var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll);
LocalsTests.cs (139)
40var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 73var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 157var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 311var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 535var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, 707var comp = CreateCompilation(source, options: TestOptions.DebugDll); 768var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 874var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 913var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 959var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1023var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1226var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1323var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1385var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1420var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1464var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1527var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1743var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1875var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1928var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 1977var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2046options: TestOptions.DebugDll, 2117options: TestOptions.DebugDll, 2187options: TestOptions.DebugDll, 2301options: TestOptions.DebugDll, 2360var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 2412options: TestOptions.DebugDll, 2417options: TestOptions.DebugDll, 2455options: TestOptions.DebugDll, 2460options: TestOptions.DebugDll, 2499var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2555var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2588var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2624var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2666var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 2755var compilation0 = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll); 2816var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 2907var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 2981var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 3067var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 3180var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 3282var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 3341var compilation0 = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 3404var comp = CreateCompilation(source, options: TestOptions.DebugDll); 3438var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 3490var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 3559var comp = CreateCompilation(source, options: TestOptions.DebugDll); 3658var comp = CreateCompilation(source, options: TestOptions.DebugDll); 3729var comp = CreateCompilation(source, options: TestOptions.DebugDll); 3879var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3921var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 3982var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4113var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4192var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4329var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4384var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4466var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4526var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4584var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4645var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4714var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4787var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4867var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4926var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 4990var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5211var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5321var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5407var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5511var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5593var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5695var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5810var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5895var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 5981var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6060var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6141var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6223var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6300var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6387var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6453var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6504var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6556var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6610var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6662var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6715var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6755var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6809var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6864var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6920var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 6973var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7025var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7077var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7129var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7169var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7221var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7273var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7325var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7379var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7433var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7487var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7538var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7589var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7640var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7692var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7746var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7800var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7853var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7895var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7937var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 7969var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8017var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8066var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8117var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8153var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8189var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8224var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8274var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8326var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8378var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8425var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8458var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8505var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8552var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8602var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8651var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8697var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8735var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8783var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8833var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8882var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8927var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8960var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 8989var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 9031var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 9063var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 9108var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 9141var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 9176var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 9211var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll);
ManagedAddressOfTests.cs (7)
28var comp = CreateCompilation(source, options: TestOptions.DebugDll); 62var comp = CreateCompilation(source, options: TestOptions.DebugDll); 98var comp = CreateCompilation(source, options: TestOptions.DebugDll); 144var comp = CreateCompilation(source, options: TestOptions.DebugDll); 194var comp = CreateCompilation(source, options: TestOptions.DebugDll); 214var comp = CreateCompilation(source, options: TestOptions.DebugDll); 248var comp = CreateCompilation(source, options: TestOptions.DebugDll);
MissingAssemblyTests.cs (8)
90var comp = CreateCompilation(source, new[] { libRef }, TestOptions.DebugDll); 129var comp = CreateCompilation(source, options: TestOptions.DebugDll); 170var comp = CreateCompilation(source, options: TestOptions.DebugDll); 235var comp = CreateCompilation(source, options: TestOptions.DebugDll); 521var comp = CreateCompilation(source, options: TestOptions.DebugDll); 558var comp = CreateEmptyCompilation(source, WinRtRefs, TestOptions.DebugDll); 601var comp = CreateEmptyCompilation(source, WinRtRefs, TestOptions.DebugDll); 898references: new[] { SystemRuntimeFacadeRef, ValueTupleRef }, options: TestOptions.DebugDll);
NoPIATests.cs (4)
86var compilationPIA = CreateCompilation(sourcePIA, options: TestOptions.DebugDll); 89var compilation0 = CreateCompilation(source, new[] { referencePIA }, TestOptions.DebugDll); 141var modulePIA = CreateCompilation(sourcePIA, options: TestOptions.DebugDll).ToModuleInstance(); 146options: TestOptions.DebugDll,
PseudoVariableTests.cs (24)
35var comp = CreateCompilation(source, options: TestOptions.DebugDll); 76var comp = CreateCompilation(source, options: TestOptions.DebugDll); 113var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 156var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 228var comp = CreateCompilation(source, options: TestOptions.DebugDll); 265var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 287var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 339var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 386var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 448var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 502var comp = CreateCompilation(source, options: TestOptions.DebugDll); 550var comp = CreateCompilation(source, options: TestOptions.DebugDll); 592var comp = CreateCompilation(source, options: TestOptions.DebugDll); 627var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 673var comp = CreateCompilation(source, options: TestOptions.DebugDll); 695var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 821var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 869var compilation0 = CreateCompilation(source, options: TestOptions.DebugDll); 936options: TestOptions.DebugDll.WithDelaySign(true)); 942options: TestOptions.DebugDll); 949options: TestOptions.DebugDll.WithDelaySign(true)); 1029var compilationA = CreateCompilation(sourceA, options: TestOptions.DebugDll, assemblyName: assemblyNameA); 1106var comp = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName()); 1146var comp = CreateCompilation(source, options: TestOptions.DebugDll, assemblyName: GetUniqueName());
ReferencedModulesTests.cs (25)
210var options = TestOptions.DebugDll.WithDelaySign(true); 215var (identityB1, moduleB1, refB1) = Compile(new AssemblyIdentity("B", new Version(1, 1, 1, 1)), "public class B : A { static void M() { } }", TestOptions.DebugDll, refA2, MscorlibRef); 308var options = TestOptions.DebugDll.WithDelaySign(true); 311var (identityA, moduleA, refA) = Compile(new AssemblyIdentity("A", new Version(1, 1, 1, 1)), "public class A { }", TestOptions.DebugDll, refOther, MscorlibRef); 312var (identityB, moduleB, refB) = Compile(new AssemblyIdentity("B", new Version(1, 1, 1, 1)), "public class B : A { static void M() { } }", TestOptions.DebugDll, refA, refOther, MscorlibRef); 537options: TestOptions.DebugDll.WithDelaySign(true)); 544options: TestOptions.DebugDll.WithDelaySign(true)); 554options: TestOptions.DebugDll); 561options: TestOptions.DebugDll); 571options: TestOptions.DebugDll.WithDelaySign(true)); 578options: TestOptions.DebugDll.WithDelaySign(true)); 626options: TestOptions.DebugDll); 777var compilation = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, references: references, assemblyName: assemblyName); 873var compilationA = CreateCompilationWithMscorlib40AndSystemCore(sourceA, options: TestOptions.DebugDll); 877var compilationB = CreateCompilationWithMscorlib40AndSystemCore(sourceB, options: TestOptions.DebugDll, references: new[] { moduleA.GetReference() }); 993options: TestOptions.DebugDll).ToModuleInstance(); 998options: TestOptions.DebugDll).ToModuleInstance(); 1074var systemConsoleComp = CreateCompilation(sourceConsole, options: TestOptions.DebugDll, assemblyName: "System.Console"); 1076var systemObjectModelComp = CreateCompilation(sourceObjectModel, options: TestOptions.DebugDll, assemblyName: "System.ObjectModel"); 1093options: TestOptions.DebugDll, 1109options: TestOptions.DebugDll); 1165var compilationA = CreateCompilationWithMscorlib40AndSystemCore(sourceA, options: TestOptions.DebugDll); 1168var compilationB = CreateCompilationWithMscorlib40AndSystemCore(sourceB, options: TestOptions.DebugDll, references: new[] { moduleA.GetReference() }); 1316var comp = CreateEmptyCompilation(source, options: TestOptions.DebugDll, references: new[] { refLib, AssemblyMetadata.Create(module).GetReference() }, parseOptions: parseOptions); 1465var comp = CreateCompilation(source, options: TestOptions.DebugDll);
ResultPropertiesTests.cs (10)
39var comp = CreateCompilation(source, options: TestOptions.DebugDll); 74var comp = CreateCompilation(source, options: TestOptions.DebugDll); 152var comp = CreateCompilation(source, options: TestOptions.DebugDll); 183var comp = CreateCompilation(source, options: TestOptions.DebugDll); 221var comp = CreateCompilation(source, options: TestOptions.DebugDll); 250var comp = CreateCompilation(source, options: TestOptions.DebugDll); 284var comp = CreateCompilation(source, options: TestOptions.DebugDll); 307var comp = CreateCompilation(source, options: TestOptions.DebugDll); 341var comp = CreateCompilation(source, options: TestOptions.DebugDll); 384var comp = CreateCompilation(source, options: TestOptions.DebugDll);
TupleTests.cs (10)
40var comp = CreateCompilationWithMscorlib40(source, new[] { ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll); 123var app = CreateEmptyCompilation(source + valuetuple_cs, references: new[] { corlibWithoutVTRef }, parseOptions: parseOptions, options: TestOptions.DebugDll); 173var comp = CreateCompilationWithMscorlib40(source, options: TestOptions.DebugDll); 212var comp = CreateCompilationWithMscorlib40(source, new[] { ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll); 260var comp = CreateCompilationWithMscorlib40(source, new[] { ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll); 302var comp = CreateCompilationWithMscorlib40(source, new[] { SystemRuntimeFacadeRef, ValueTupleRef }, options: TestOptions.DebugDll); 336var comp = CreateCompilationWithMscorlib40(source, new[] { SystemRuntimeFacadeRef, ValueTupleRef }, options: TestOptions.DebugDll); 371var comp = CreateCompilationWithMscorlib40(source, new[] { ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll); 437var comp = CreateCompilationWithMscorlib40(source, new[] { ValueTupleRef, SystemRuntimeFacadeRef }, options: TestOptions.DebugDll); 502var comp = CreateCompilationWithMscorlib40(source, new[] { SystemRuntimeFacadeRef, ValueTupleRef }, options: TestOptions.DebugDll);
UsingDebugInfoTests.cs (3)
110var comp = CreateCompilation(source, options: TestOptions.DebugDll); 1227var comp1 = CreateEmptyCompilation(source1, new[] { MscorlibRef_v20 }, TestOptions.DebugDll); 1230var comp2 = CreateEmptyCompilation(source2, new[] { MscorlibRef_v4_0_30316_17626, module1.GetReference() }, TestOptions.DebugDll);
WinMdTests.cs (6)
46options: TestOptions.DebugDll, 88options: TestOptions.DebugDll, 179var compilation0 = CreateEmptyCompilation(source, compileReferences, TestOptions.DebugDll); 258var compilation = CreateEmptyCompilation(source, WinRtRefs, TestOptions.DebugDll); 307var compilation = CreateEmptyCompilation(source, WinRtRefs, TestOptions.DebugDll); 341var compilation = CreateEmptyCompilation(source, WinRtRefs, TestOptions.DebugDll);
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.UnitTests (3)
AccessibilityTests.cs (2)
91var compilationB = CSharpTestBase.CreateCompilation(sourceB, options: TestOptions.DebugDll, references: new MetadataReference[] { referenceA }); 248var compilationA = CSharpTestBase.CreateCompilation(sourceA, options: TestOptions.DebugDll);
ExpansionTests.cs (1)
2268var compilationB = CSharpTestBase.CreateCompilation(sourceB, options: TestOptions.DebugDll, references: new MetadataReference[] { referenceA });
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (249)
Semantics\BindingAsyncTasklikeMoreTests.cs (3)
916var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 1005var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll); 1090var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll);
Semantics\BindingTests.cs (4)
2682var compilation = CreateCompilation(sourceText, options: TestOptions.DebugDll); 2738var compilation = CreateCompilation(sourceText, options: TestOptions.DebugDll); 2793var compilation = CreateCompilationWithMscorlib40AndSystemCore(sourceText, options: TestOptions.DebugDll); 2842var compilation = CreateCompilationWithMscorlib40(sourceText, new[] { TestMetadata.Net40.SystemCore }, options: TestOptions.DebugDll);
Semantics\ConditionalOperatorTests.cs (1)
1411var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
Semantics\DynamicTests.cs (7)
2945CreateCompilationWithMscorlib45(source, new[] { SystemCoreRef }, options: TestOptions.DebugDll).VerifyEmitDiagnostics( 3606var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithAllowUnsafe(true), verify: Verification.FailsPEVerify).VerifyDiagnostics(); 3634var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithAllowUnsafe(true), verify: Verification.FailsPEVerify).VerifyDiagnostics(); 3661CreateCompilation(source, options: TestOptions.DebugDll.WithAllowUnsafe(true)).VerifyDiagnostics( 3685var verifier = CompileAndVerify(source, new[] { CSharpRef }, options: TestOptions.DebugDll).VerifyDiagnostics(); 3757var compilation = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll); 3784var compilation = CreateCompilation(source, new[] { CSharpRef }, options: TestOptions.DebugDll);
Semantics\ForEachTests.cs (3)
3383var comp1 = CreateEmptyCompilation(source1, options: TestOptions.DebugDll, assemblyName: "MissingBaseType1"); 3411var comp2 = CreateEmptyCompilation(source2, new[] { comp1.ToMetadataReference() }, options: TestOptions.DebugDll); 3426var comp3 = CreateEmptyCompilation(source3, options: TestOptions.DebugDll, assemblyName: "MissingBaseType2");
Semantics\GlobalUsingDirectiveTests.cs (1)
5022CreateCompilation(new[] { source1, source2 }, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview).VerifyDiagnostics(
Semantics\ImplicitObjectCreationTests.cs (3)
404var comp = CreateCompilation(source, options: TestOptions.DebugDll); 2787var comp = CreateCompilation(source, options: TestOptions.DebugDll); 3709var comp = CreateCompilation(text, options: TestOptions.DebugDll);
Semantics\InheritanceBindingTests.cs (2)
2996new[] { source1 }, TargetFrameworkUtil.GetReferences(TargetFramework.Standard, null).ToArray(), TestOptions.DebugDll.WithPublicSign(true)); 2999new[] { source1 }, TargetFrameworkUtil.GetReferences(TargetFramework.Standard, null).ToArray(), TestOptions.DebugDll.WithPublicSign(true));
Semantics\InitOnlyMemberTests.cs (5)
1438options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 4583var piaCompilation = CreateCompilationWithMscorlib45(new[] { IsExternalInitTypeDefinition, pia }, options: TestOptions.DebugDll); 4704options: TestOptions.DebugDll.WithTopLevelBinderFlags(BinderFlags.IgnoreCorLibraryDuplicatedTypes)); 4725options: TestOptions.DebugDll.WithTopLevelBinderFlags(BinderFlags.IgnoreCorLibraryDuplicatedTypes)); 4750options: TestOptions.DebugDll.WithTopLevelBinderFlags(BinderFlags.IgnoreCorLibraryDuplicatedTypes));
Semantics\InteractiveUsingTests.cs (10)
53options: TestOptions.DebugDll.WithUsings("System", "System.IO.Path")); 66options: TestOptions.DebugDll.WithUsings("System.Text")); 159var options = TestOptions.DebugDll.WithUsings("System"); 268var options = TestOptions.DebugDll.WithUsings("System"); 292CreateSubmission("typeof(String)", options: TestOptions.DebugDll.WithUsings("System", "System")).VerifyDiagnostics(); 298var options = TestOptions.DebugDll.WithUsings("System"); 325var options = TestOptions.DebugDll.WithUsings("B"); 365options: TestOptions.DebugDll.WithSourceReferenceResolver(resolver)); 436options: TestOptions.DebugDll.WithSourceReferenceResolver(resolver), 486options: TestOptions.DebugDll.WithSourceReferenceResolver(resolver).WithUsings("System.IO", "System.IO.Path"));
Semantics\IteratorTests.cs (1)
380var comp = CreateCompilation(text, options: TestOptions.DebugDll);
Semantics\LambdaTests.cs (1)
2809var comp = CreateCompilation(src, options: TestOptions.DebugDll);
Semantics\LocalFunctionTests.cs (1)
6809CompileAndVerify(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), symbolValidator: m =>
Semantics\NameLengthTests.cs (2)
404var comp = CreateCompilation(source, options: TestOptions.DebugDll); 429var comp = CreateCompilation(source, options: TestOptions.DebugDll);
Semantics\NullableReferenceTypesTests.cs (47)
5177var comp = CreateCompilation(source, options: TestOptions.DebugDll); 5227var comp = CreateCompilation(source, parseOptions: TestOptions.Regular.WithFeature("run-nullable-analysis", "always"), options: TestOptions.DebugDll); 5273var comp = CreateCompilation(source, parseOptions: TestOptions.Regular.WithFeature("run-nullable-analysis", "always"), options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Disable)); 5319var comp = CreateCompilation(source, parseOptions: TestOptions.Regular.WithFeature("run-nullable-analysis", "always"), options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5381var comp = CreateCompilation(new[] { source0, source1, source2 }, options: TestOptions.DebugDll); 5394comp = CreateCompilation(new[] { source0, source1, source2 }, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Disable)); 5407comp = CreateCompilation(new[] { source0, source1, source2 }, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5544var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5564var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5586var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5604var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5626var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5655var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5689var comp = CreateCompilation(new[] { source1, source2 }, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5724var comp = CreateCompilation(new[] { source1, source2 }, options: TestOptions.DebugDll.WithNullableContextOptions(NullableContextOptions.Enable)); 5802options: TestOptions.DebugDll 6352var comp2 = CreateCompilation(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(id, ReportDiagnostic.Suppress)); 6369var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6386var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6406var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6430var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6453var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6475var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6497var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6520var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6542var comp = CreateCompilation(source, options: TestOptions.DebugDll); 6564var comp = CreateCompilation(source, options: TestOptions.DebugDll); 14423var comp = CreateCompilation(source, options: TestOptions.DebugDll); 14473var comp = CreateCompilation(source, options: TestOptions.DebugDll); 19630", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 19766", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 19834", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 19879", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 19950", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 20000", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 20080", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 20148", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 59082var piaCompilation = CreateCompilationWithMscorlib45(pia, options: WithNullableEnable(TestOptions.DebugDll)); 59140var piaCompilation = CreateCompilationWithMscorlib45(pia, options: WithNullableEnable(TestOptions.DebugDll)); 61392", options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 73252var piaCompilation = CreateCompilationWithMscorlib45(pia, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular7); 73419" }, options: WithNullableEnable(TestOptions.DebugDll)); 73468" }, options: WithNullableEnable(TestOptions.DebugDll)); 76599var comp = CreateCompilation(src, options: WithNullableEnable(TestOptions.DebugDll)); 155932var piaCompilation = CreateCompilationWithMscorlib45(pia, options: WithNullableEnable(TestOptions.DebugDll)); 155990var piaCompilation = CreateCompilationWithMscorlib45(pia, options: WithNullableEnable(TestOptions.DebugDll)); 156039var piaCompilation = CreateCompilationWithMscorlib45(pia, options: WithNullableEnable(TestOptions.DebugDll));
Semantics\OperatorTests.cs (1)
11218var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
Semantics\OutVarTests.cs (8)
5253var compilation = CreateCompilationWithMscorlib45(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular); 20168var comp = CreateCompilation(text, options: TestOptions.DebugDll, references: new[] { CSharpRef }); 32885var compilation = CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular); 33269var comp = CreateCompilation(source, options: TestOptions.DebugDll); 33385var comp = CreateCompilation(source, options: TestOptions.DebugDll); 33417var comp = CreateCompilationWithMscorlib40(source, options: TestOptions.DebugDll, references: new[] { Net40.SystemCore }); 33443var comp = CreateCompilation(source, options: TestOptions.DebugDll); 35633var comp = CreateCompilation(source, options: TestOptions.DebugDll);
Semantics\OverloadResolutionTests.cs (1)
1377var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
Semantics\PrimaryConstructorTests.cs (5)
6190var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 14693var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 14715var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 14736var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 14757var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
Semantics\ReadOnlyStructsTests.cs (4)
1616var dllMetadata = CreateCompilation(csharp, options: TestOptions.DebugDll, targetFramework: TargetFramework.Mscorlib45).EmitToImageReference(); 1644var dllMetadata = CreateCompilation(csharp, options: TestOptions.DebugDll, targetFramework: TargetFramework.Mscorlib45).EmitToImageReference(); 1673var dllComp = CreateCompilation(csharp, options: TestOptions.DebugDll, targetFramework: TargetFramework.Mscorlib45); 1695var dllComp = CreateCompilation(csharp, options: TestOptions.DebugDll, targetFramework: TargetFramework.Mscorlib45);
Semantics\RecordStructTests.cs (2)
10516options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 11436var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60);
Semantics\RecordTests.cs (8)
25111options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 25171options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 25248options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 25305options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 25380options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 25464options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 25534options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 30286var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60);
Semantics\StructConstructorTests.cs (17)
3895CreateCompilation(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings), parseOptions: TestOptions.Regular11) 3901CreateCompilation(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(GetIdForErrorCode(ErrorCode.WRN_UnassignedThisSupportedVersion), ReportDiagnostic.Error), parseOptions: TestOptions.Regular11) 3990CreateCompilation(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings), parseOptions: TestOptions.Regular11) 4021var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings), parseOptions: TestOptions.Regular11); 4064var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings), parseOptions: TestOptions.Regular11); 4202var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4241var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4274var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4309var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4349var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4399var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4443var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4486var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4527var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4549var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4591var verifier = CompileAndVerify(source, options: TestOptions.DebugDll.WithSpecificDiagnosticOptions(ReportStructInitializationWarnings)); 4622verifier = CompileAndVerify(source, options: TestOptions.DebugDll);
Semantics\TargetTypedConditionalOperatorTests.cs (5)
333var comp = CreateCompilation(tree, options: TestOptions.DebugDll.WithAllowUnsafe(true)); 432CreateCompilation(source, parseOptions: TestOptions.Regular8, options: TestOptions.DebugDll.WithAllowUnsafe(true)) 434CreateCompilation(source, parseOptions: TestOptions.Regular.WithLanguageVersion(MessageID.IDS_FeatureTargetTypedConditional.RequiredVersion()), options: TestOptions.DebugDll.WithAllowUnsafe(true)) 451CreateCompilation(source, parseOptions: TestOptions.Regular8, options: TestOptions.DebugDll) 453CreateCompilation(source, parseOptions: TestOptions.Regular.WithLanguageVersion(MessageID.IDS_FeatureTargetTypedConditional.RequiredVersion()), options: TestOptions.DebugDll)
Semantics\TargetTypedDefaultTests.cs (3)
2855var comp = CreateCompilation(text, parseOptions: TestOptions.Regular7_1, options: TestOptions.DebugDll); 2903var comp = CreateCompilation(text, parseOptions: TestOptions.Regular7_1, options: TestOptions.DebugDll); 2926var comp = CreateCompilation(text, parseOptions: TestOptions.Regular7_1, options: TestOptions.DebugDll);
Semantics\TopLevelStatementsTests.cs (2)
8049var comp = CreateCompilation(text, options: TestOptions.DebugDll, parseOptions: DefaultParseOptions); 9663var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
Semantics\UnsafeTests.cs (6)
9844var comp = CreateCompilation(csharp, options: TestOptions.DebugDll); 9864var comp = CreateCompilation(csharp, options: TestOptions.DebugDll); 9880var comp = CreateCompilation(csharp, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular11); 9899var comp = CreateCompilation(csharp, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular11); 9950var comp = CreateCompilation(csharp, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular11); 10216var comp = CreateCompilation(csharp, options: TestOptions.DebugDll);
Semantics\Utf8StringsLiteralsTests.cs (26)
2539var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2572var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2605var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2638var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2686var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2731var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2779var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2809var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2851var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2889var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2915var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2941var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2966var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 2994var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3022var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3050var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3078var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3106var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3134var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3162var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3190var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3218var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3246var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3274var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3302var comp = CreateCompilation(source, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll); 3776var comp = CreateCompilation(new[] { source + HelpersSource, UnscopedRefAttributeDefinition }, targetFramework: TargetFramework.NetCoreApp, options: TestOptions.DebugDll);
Semantics\WarningVersionTests.cs (24)
157options: TestOptions.DebugDll.WithWarningLevel(CodeAnalysis.Diagnostic.DefaultWarningLevel), 166options: TestOptions.DebugDll.WithWarningLevel(5), 179options: TestOptions.DebugDll.WithWarningLevel(5), 188options: TestOptions.DebugDll 235options: TestOptions.DebugDll.WithWarningLevel(CodeAnalysis.Diagnostic.DefaultWarningLevel), 244options: TestOptions.DebugDll.WithWarningLevel(5), 257options: TestOptions.DebugDll 267options: TestOptions.DebugDll 321options: TestOptions.DebugDll.WithWarningLevel(CodeAnalysis.Diagnostic.DefaultWarningLevel), 330options: TestOptions.DebugDll.WithWarningLevel(5), 346options: TestOptions.DebugDll.WithWarningLevel(5), 358options: TestOptions.DebugDll 445options: TestOptions.DebugDll.WithWarningLevel(CodeAnalysis.Diagnostic.DefaultWarningLevel), 454options: TestOptions.DebugDll.WithWarningLevel(5), 467options: TestOptions.DebugDll.WithWarningLevel(5), 476options: TestOptions.DebugDll 532options: TestOptions.DebugDll.WithWarningLevel(CodeAnalysis.Diagnostic.DefaultWarningLevel), 541options: TestOptions.DebugDll.WithWarningLevel(5), 554options: TestOptions.DebugDll.WithWarningLevel(5), 563options: TestOptions.DebugDll 619options: TestOptions.DebugDll.WithWarningLevel(CodeAnalysis.Diagnostic.DefaultWarningLevel), 628options: TestOptions.DebugDll.WithWarningLevel(5), 641options: TestOptions.DebugDll.WithWarningLevel(5), 650options: TestOptions.DebugDll
SourceGeneration\GeneratorDriverTests.cs (4)
3211Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 3242Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 3257compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 3273compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions);
SourceGeneration\SyntaxAwareGeneratorTests.cs (42)
32Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 58Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 83Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 109Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 134Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 161Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 233Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 272Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 313Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 369Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 413Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 457Compilation compilation = CreateCompilation(new[] { source1, source2 }, options: TestOptions.DebugDll, parseOptions: parseOptions); 499Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 555Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 587Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 625Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 681Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 738Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 781Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 826Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 861Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 901Compilation compilation = CreateCompilation(new[] { source1, source2 }, options: TestOptions.DebugDll, parseOptions: parseOptions); 943Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1020Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1095Compilation compilation = CreateCompilation(new[] { source1, source2 }, options: TestOptions.DebugDll, parseOptions: parseOptions); 1176Compilation compilation = CreateCompilation(new[] { source1, source2 }, options: TestOptions.DebugDll, parseOptions: parseOptions); 1226Compilation compilation = CreateCompilation(new[] { source1, source2, source3 }, options: TestOptions.DebugDll, parseOptions: parseOptions); 1309Compilation compilation = CreateCompilation(new[] { source1, source2, source3 }, options: TestOptions.DebugDll, parseOptions: parseOptions); 1382Compilation compilation = CreateCompilation(new[] { source1, source2, source3 }, options: TestOptions.DebugDll, parseOptions: parseOptions); 1515Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1570Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1619Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1680Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1739Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1792Compilation compilation = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: parseOptions); 1855Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 1898Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 1941Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 1992Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 2018Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 2056Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll, parseOptions: parseOptions); 2090Compilation compilation = CreateCompilation(source, options: TestOptions.DebugDll);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1386)
Compilation\CompilationAPITests.cs (9)
41=> TestOptions.DebugDll.WithSyntaxTreeOptionsProvider(new TestSyntaxTreeOptionsProvider(tree, options)); 72var options = TestOptions.DebugDll 168var options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider( 195var options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider( 205options = TestOptions.DebugDll.WithSyntaxTreeOptionsProvider( 240var options = TestOptions.DebugDll 289var compilationOptions = TestOptions.DebugDll.WithWarningLevel(0); 2385var compilationOptions = TestOptions.DebugDll; 336042", returnType: typeof(int), options: TestOptions.DebugDll.WithSourceReferenceResolver(resolver));
Compilation\LoadDirectiveTests.cs (6)
21var options = TestOptions.DebugDll.WithSourceReferenceResolver(TestSourceReferenceResolver.Default); 34var options = TestOptions.DebugDll.WithSourceReferenceResolver(TestSourceReferenceResolver.Default); 53var options = TestOptions.DebugDll.WithSourceReferenceResolver(resolver); 78var options = TestOptions.DebugDll.WithSourceReferenceResolver(resolver); 156var options = TestOptions.DebugDll.WithSourceReferenceResolver(resolver); 176options = TestOptions.DebugDll.WithSourceReferenceResolver(resolver);
Compilation\UsedAssembliesTests.cs (9)
2339AssertUsedAssemblyReferences(CreateCompilation(Parse(source, options: TestOptions.Script), references: new[] { reference }, options: TestOptions.DebugDll.WithUsings(@using)), 3918options: TestOptions.DebugDll.WithUsings("C0")), 3922options: TestOptions.DebugDll.WithUsings("C0")), 4513options: TestOptions.DebugDll.WithUsings("N1.N2")), 4517options: TestOptions.DebugDll.WithUsings("N1.N2")), 4521options: TestOptions.DebugDll.WithUsings("N1")), 4525options: TestOptions.DebugDll.WithUsings("N1")), 4704options: TestOptions.DebugDll.WithUsings("N1.N2.E0")), 4708options: TestOptions.DebugDll.WithUsings("N1.N2.E0")),
DocumentationComments\DocumentationCommentIDTests.cs (2)
415var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(nullableContextOptions)); 435var comp = CreateCompilation(source, options: TestOptions.DebugDll.WithNullableContextOptions(nullableContextOptions));
Symbols\CheckedUserDefinedOperatorsTests.cs (74)
34var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 37compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular10); 45compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular11); 78var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 112var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 142var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 187var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 208var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 227var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 249var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 311var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 347var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 372var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 398var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 427var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 445var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 472var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 895var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: options); 926var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: options); 969var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1005var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1251var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1254compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular10); 1262compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular11); 1296var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1331var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1362var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1395var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1418var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1481var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1517var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1544var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1571var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1605var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1623var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 1650var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2158var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: options); 2214var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2429var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2456var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2485var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2488compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular10); 2496compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.Regular11); 2532var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2572var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2605var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2637var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2656var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2715var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2749var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2772var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2795var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 2821var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 3179var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: options); 3208var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 3442var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 3835var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 3880var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 4217var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 4678var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 4797var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 4840var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 5110var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 5228var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 5696var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 6326var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 6431var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 6550var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 6607var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 6757var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 6806var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 6855var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 7006var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview); 7051var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview);
Symbols\DefaultInterfaceImplementationTests.cs (571)
1597var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 1635options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 1678var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60, 1691options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 1735var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1756var compilation3 = CreateCompilation(source2, new[] { reference }, options: TestOptions.DebugDll, 1788var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 1832options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 1883var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1922var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 1940var compilation3 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 1983var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 2027var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2050var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 2272var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2341var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2414var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2487var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2982var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3018var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3054var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3095var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3120var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3145var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3175var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3209var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3243var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3279var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3304var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3329var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3368var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3424var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4040var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 4093options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 4208var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4221options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 4285var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4305targetFramework: TargetFramework.DesktopLatestExtended, options: TestOptions.DebugDll, 4349var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 4395options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 4449var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 4491options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 4550var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4601var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 4617var compilation3 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 4682var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4918var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4955var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4983var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5020var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5059var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5112var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5641var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 5671options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 5768var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5781options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 5826var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5845var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 5896var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 5942options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 6004var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6035var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 6051var compilation3 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 6098var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6169var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6183var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 7124var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 7159options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 7232var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7245targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, options: TestOptions.DebugDll, 7292var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7311var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 7347var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 7375options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 7412var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 7436options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 7478var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7511var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 7527var compilation3 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 7575var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7627var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7900var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8178var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8214var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8427var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8493var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 8627var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8752var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8907var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9080var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 9123var compilation5 = CreateCompilation(source3, new[] { reference }, options: TestOptions.DebugDll, 9277var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 9351var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 9650var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 9714var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 9799var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 9858var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 9896var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10007var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10118var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10186var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 10271var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 10322var compilation3 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 10389var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10491var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10730var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 10792var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 10815options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 11048var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11071var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11113var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11168var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 11270var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11337var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11367var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11421var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11448var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11461var compilation2 = CreateCompilation(source1 + source2, options: TestOptions.DebugDll, 11539var compilation3 = CreateCompilation(source0, options: TestOptions.DebugDll, 11705var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 11738var compilation5 = CreateCompilation(source3, new[] { reference }, options: TestOptions.DebugDll, 11820var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 11859var compilation5 = CreateCompilation(source3, new[] { reference }, options: TestOptions.DebugDll, 11943var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 11988var compilation5 = CreateCompilation(source3, new[] { reference }, options: TestOptions.DebugDll, 12041var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 12103var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 12165var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 12438var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 12526var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 12614var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 12707var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12762var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12835var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12892var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13382var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13472var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 13712var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13880var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14174var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14520var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14747var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 14800var compilation5 = CreateCompilation(source3, new[] { reference }, options: TestOptions.DebugDll, 14944var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 15070var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 15484var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 15565var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 15652var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 15671var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 15679var compilation3 = CreateCompilation(source2, new[] { reference }, options: TestOptions.DebugDll, 15770var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 15777compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 15817var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16122var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16394var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16582var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 16732var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 16740var compilation3 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 16830var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17080var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17325var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 17403var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17435options: TestOptions.DebugDll, 18130var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(metadataImportOptions), 18299var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 19706var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 19784var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 19815options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 19853var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 19985var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 20182var compilation3 = CreateCompilation(source0, options: TestOptions.DebugDll, 21367var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21856var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21946var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 22185var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22262var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22440var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23196var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23503var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23569var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23686var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23752var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 24322var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 24354options: TestOptions.DebugDll, 26346var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 26383options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 26422var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 26558var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 26614var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 26948var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 27038var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 27508var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 27755var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28010var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28293var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 28343var compilation5 = CreateCompilation(source3, new[] { reference }, options: TestOptions.DebugDll, 28449var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 28575var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: targetFramework, 28993var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 29077var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 29164var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 29183var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 29191var compilation3 = CreateCompilation(source2, new[] { reference }, options: TestOptions.DebugDll, 29275var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 29282compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 29315var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 29511var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 29807var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 29918var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 30080var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 30134var compilation3 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 30253var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30474var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30730var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 30805var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30836options: TestOptions.DebugDll, 30945var compilation3 = CreateCompilation(source0, options: TestOptions.DebugDll, 31831var compilation3 = CreateCompilation(source0, options: TestOptions.DebugDll, 31965var compilation3 = CreateCompilation(source0, options: TestOptions.DebugDll, 32069var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32196var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32356var compilation3 = CreateCompilation(source0, options: TestOptions.DebugDll, 32502var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32579var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32616var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32643var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32685var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32932var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32956var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 33008var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33029CreateCompilation(source1, options: TestOptions.DebugDll, 33042var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 33058CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 33098var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 33123options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 33172var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 33202options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 33248var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33296var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33345var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33403var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33465var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33529var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33575var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33614var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 33647var compilation3 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 33699var compilation4 = CreateCompilation(source2, options: TestOptions.DebugDll, 34003var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 34009var compilation5 = CreateCompilation(source2 + source3, new[] { compilation4.ToMetadataReference() }, options: TestOptions.DebugDll, 34025var compilation6 = CreateCompilation(source2 + source3, new[] { compilation4.EmitToImageReference() }, options: TestOptions.DebugDll, 34097var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 34278var compilation2 = CreateCompilation(source2, new[] { ref1 }, options: TestOptions.DebugDll, 34304compilation2 = CreateCompilation(source2, new[] { ref1 }, options: TestOptions.DebugDll, 34355var compilation3 = CreateCompilation(source3, new[] { ref1, ref2 }, options: TestOptions.DebugDll, 34498var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 34504var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 34518var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 34783var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 34788var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 34812var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 34874var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 34879var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 34907var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 34975var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 34980var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 35005var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 35071var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35076var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 35100var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 35166var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35181var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 35277var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35386var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35499var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35612var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35714var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35823var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 35917var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 36035var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 36236var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 36424var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 36612var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 36620var compilation5 = CreateCompilation(source2 + source3, new[] { reference }, options: TestOptions.DebugDll, 36674var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 36702var comp = CreateCompilation(source1, options: TestOptions.DebugDll, 37089var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 37106var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 37190var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 37207options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 37337var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 37420var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 37464var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 37530var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 37767var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 37802var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 37810var compilation3 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: isStatic ? TargetFramework.Net50 : TargetFramework.DesktopLatestExtended, 37817var compilation4 = CreateCompilation(source2, options: TestOptions.DebugDll, 38253var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 38556var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 38615var compilation2 = CreateCompilation(source2, new[] { ref1 }, options: TestOptions.DebugDll, 38641compilation2 = CreateCompilation(source2, new[] { ref1 }, options: TestOptions.DebugDll, 38695var compilation3 = CreateCompilation(source3, new[] { ref1, ref2 }, options: TestOptions.DebugDll.WithConcurrentBuild(false), 38817var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 38823var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 38830var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 39307var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 39325var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 40027var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40057var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 40118var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40148var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 40208var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 40239options: TestOptions.DebugDll, targetFramework: TargetFramework.DesktopLatestExtended, 40297var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 40327options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 40387var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40430var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40478var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40538var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40602var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40668var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40742var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 40937var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 40943var compilation5 = CreateCompilation(source2 + source3, new[] { compilation4.ToMetadataReference() }, options: TestOptions.DebugDll, 40956var compilation6 = CreateCompilation(source2 + source3, new[] { compilation4.EmitToImageReference() }, options: TestOptions.DebugDll, 41053var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 41277var compilation2 = CreateCompilation(source2, new[] { ref1 }, options: TestOptions.DebugDll, 41303compilation2 = CreateCompilation(source2, new[] { ref1 }, options: TestOptions.DebugDll, 41357var compilation3 = CreateCompilation(source3, new[] { ref1, ref2 }, options: TestOptions.DebugDll.WithConcurrentBuild(false), 41483var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 41489var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 41503var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 41873var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 42077var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 42281var compilation4 = CreateCompilation(source1, options: TestOptions.DebugDll, 42289var compilation5 = CreateCompilation(source2 + source3, new[] { reference }, options: TestOptions.DebugDll, 43511var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 43535var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 44158var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 44204var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 44235var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 44359var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 44562var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 44817var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 45293var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 45653var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 45659var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 45816var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 45927var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 46071var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 46132var compilation4 = CreateCompilation(source4, options: TestOptions.DebugDll, 46426var compilation6 = CreateCompilation(source1 + source2, options: TestOptions.DebugDll, 46505var compilation61 = CreateCompilation(source1 + source2, options: TestOptions.DebugDll, 46971var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp, 47491var compilation0 = CreateCompilation(source0 + source1 + source2, options: TestOptions.DebugDll, 47523var compilation3 = CreateCompilation(source4 + source1 + source2, options: TestOptions.DebugDll, 47552var compilation6 = CreateCompilation(source4 + source1 + source5, options: TestOptions.DebugDll, 47624var compilation0 = CreateCompilation(source0 + source1 + source2, options: TestOptions.DebugDll, 47656var compilation3 = CreateCompilation(source4 + source1 + source2, options: TestOptions.DebugDll, 47685var compilation6 = CreateCompilation(source4 + source1 + source5, options: TestOptions.DebugDll, 47752var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 47819var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 48473var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 48543var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 48933var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 49037var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 49391var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 49421var compilation1 = CreateCompilation("", options: TestOptions.DebugDll, 49432var compilation1 = CreateCompilation("", options: TestOptions.DebugDll, 49467var compilation1 = CreateCompilation(source, parseOptions: parseOptions, options: TestOptions.DebugDll, 49475var compilation2 = CreateCompilation("", parseOptions: parseOptions, options: TestOptions.DebugDll, 49583var compilation1 = CreateCompilation(source, parseOptions: parseOptions, options: TestOptions.DebugDll, 49591var compilation2 = CreateCompilation("", parseOptions: parseOptions, options: TestOptions.DebugDll, 49732var compilation1 = CreateCompilation(source, options: TestOptions.DebugDll, 49825var compilation2 = CreateCompilation(source0 + source3, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 49944var compilation2 = CreateCompilation(source0 + source3, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 49979var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 50017var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 50077var compilation2 = CreateCompilation(source0 + source3, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 50809var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp); 50857var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 50878var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 50885var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 51045var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 51175var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 51189var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 51196var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 51326var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 51459var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 51473var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 51480var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 51599var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 51613var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 51620var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 51719var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 51774var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 51829var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 51894var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 51952var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 52017var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 52072var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 52153var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 52223var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 52247var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 52312var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 52318var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 52325var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 52514var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 52669var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 52675var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 52682var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 52842var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 53007var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 53013var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 53021var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 53169var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 53175var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 53183var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 53311var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 53408var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 53540var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 53686var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 54008var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 54015var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 54191var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 54264var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 54364var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 54435var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 54503var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 54597var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 54691var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 54779var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 56844var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 57034var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 57046var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57075var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 57087var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57119var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 57128var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57154var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 57166var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57195var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 57204var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57230var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 57242var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57290var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 57296var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57303var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 57472var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57620var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 57626var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57633var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 57781var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57934var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 57940var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 57947var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 58083var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 58089var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 58096var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 58213var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 58296var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 58488var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 59060var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 59067var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 59128var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 59228var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 59237var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 59263var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 59275var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 62012var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 62024var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 62053var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 62062var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 62088var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 62097var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 62370var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 62382compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 62520foreach (var options in new[] { TestOptions.DebugDll, TestOptions.DebugWinMD }) 62916var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 63140var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 63306var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 63482var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 63854var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 64015var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 64131var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 64252var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 64342var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 64493var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60); 64602var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64628var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64658var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64688var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64718var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64737var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64756var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64782var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64804var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64834var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64866var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64892var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 64926var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65195var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65240var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65290var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65335var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65375var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65421var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65459var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65504var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65542var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65587var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65620var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65661var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65696var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65738var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65773var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65815var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65855var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65894var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65946var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 65990var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66035var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66071var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66114var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66146var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66194var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66225var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66267var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66338var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66449var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66560var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66740var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66769var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66944var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 66978var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67014var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67048var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67089var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67126var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67162var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67198var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67235var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67276var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67314var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67352var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67389var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67428var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67470var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67507var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67525var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67565var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67604var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67637var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 67676var compilation1 = CreateEmptyCompilation(source1, options: TestOptions.DebugDll, 67707var compilation1 = CreateEmptyCompilation(source1, options: TestOptions.DebugDll, 68297var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 68341var compilation3 = CreateCompilation(source3, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 68360var compilation4 = CreateCompilation(source4, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 68366compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 68405options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 68418options: TestOptions.DebugDll, targetFramework: TargetFramework.Net50, 68494var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 68500var compilation2 = CreateCompilation(source2, new[] { compilation1.ToMetadataReference() }, options: TestOptions.DebugDll, 68511var compilation3 = CreateCompilation(source2, new[] { compilation1.EmitToImageReference() }, options: TestOptions.DebugDll, 68655var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 68671var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 68678var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 68737var compilation1 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 68756var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 68763var compilation3 = CreateCompilation(source2, options: TestOptions.DebugDll, references: new[] { reference }, 68857var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.Net60);
Symbols\ExtendedPartialMethodsTests.cs (1)
2488options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Symbols\GenericConstraintTests.cs (2)
5692compilationOptions: TestOptions.DebugDll); 6936CompileAndVerify(source, options: TestOptions.DebugDll).VerifyDiagnostics(
Symbols\Metadata\MetadataMemberTests.cs (9)
687var options = TestOptions.DebugDll; 729options = TestOptions.DebugDll; 769var options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.Internal); 772options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All); 775options = TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.Public); 778options = TestOptions.DebugDll.WithMetadataImportOptions((MetadataImportOptions)byte.MaxValue); 792var compilation = CreateCompilation("", options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.Internal), references: new[] { compilation0.EmitToImageReference() }); 799compilation = compilation.WithOptions(TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 806compilation = compilation.WithOptions(TestOptions.DebugDll.WithMetadataImportOptions((MetadataImportOptions)byte.MaxValue));
Symbols\Metadata\PE\LoadingEvents.cs (3)
469var comp = CreateCompilation("", new[] { reference }, TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 522var comp = CreateCompilation("", new[] { ilRef }, TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); 582var comp = CreateCompilation("", new[] { ilRef }, TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
Symbols\Metadata\PE\NoPia.cs (6)
1382var compilationPIA = CreateCompilation(sourcePIA, options: TestOptions.DebugDll); 1388var compilationBase = CreateCompilation(sourceBase, new[] { referencePIASource }, TestOptions.DebugDll); 1403var compilationDerived1 = CreateCompilation(sourceDerived, new[] { referencePIASource, referenceBaseSource }, TestOptions.DebugDll); 1406var compilationDerived2 = CreateCompilation(sourceDerived, new[] { referencePIAImage, referenceBaseSource }, TestOptions.DebugDll); 1409var compilationDerived3 = CreateCompilation(sourceDerived, new[] { referencePIASource, referenceBaseImage }, TestOptions.DebugDll); 1412var compilationDerived4 = CreateCompilation(sourceDerived, new[] { referencePIAImage, referenceBaseImage }, TestOptions.DebugDll);
Symbols\ModuleInitializers\IgnoredTests.cs (11)
36options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 62options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 88options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 113options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 138options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 163options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 188options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 213options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 234options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 255options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 288options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Symbols\ModuleInitializers\ModuleInitializersTests.cs (2)
219options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All), 778options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All),
Symbols\RelaxedShiftOperatorTests.cs (7)
51var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 92var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 136var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp, 180var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp, 224var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp, 268var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp, 312var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: TargetFramework.NetCoreApp,
Symbols\Retargeting\NoPia.cs (1)
2640var piaCompilation = CreateCompilationWithMscorlib45(pia, options: TestOptions.DebugDll, assemblyName: "Pia");
Symbols\Retargeting\RetargetCustomAttributes.cs (7)
337var comp1 = CreateCompilation(source1, options: TestOptions.DebugDll); 345var comp2 = CreateCompilation(source2, references: new[] { comp1.ToMetadataReference() }, options: TestOptions.DebugDll); 346var comp3 = CreateCompilation("", references: new[] { comp2.ToMetadataReference() }, options: TestOptions.DebugDll); 367var comp1_1 = CreateCompilation(source1_1, options: TestOptions.DebugDll, assemblyName: "Lib65048"); 375var comp2 = CreateCompilation(source2, references: new[] { comp1_1.ToMetadataReference() }, options: TestOptions.DebugDll); 386var comp1_2 = CreateCompilation(source1_2, options: TestOptions.DebugDll, assemblyName: "Lib65048"); 388var comp3 = CreateCompilation("", references: new[] { comp2.ToMetadataReference(), comp1_2.ToMetadataReference() }, options: TestOptions.DebugDll);
Symbols\Source\ExpressionBodiedPropertyTests.cs (1)
463}", options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
Symbols\Source\PropertyTests.cs (2)
2605options: TestOptions.DebugDll, 2697options: TestOptions.DebugDll,
Symbols\StaticAbstractMembersInInterfacesTests.cs (582)
68var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 309var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 420var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 507var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 588var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 708var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 814var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 899var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 972var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1012var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1049var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1105var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1126var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1143var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1180var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1217var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1258var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1319var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1370var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1425var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1483var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1538var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1610var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1668var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1995var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2106var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2175var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2256var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2358var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2474var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2809var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2922var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2992var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3075var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3178var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3292var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3530var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3635var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3722var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3800var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3917var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4013var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4058compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4103compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4205var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4268compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4331compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4451var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4496compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4541compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4637var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4700compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4763compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4865var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4907var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4940var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 4973var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5009var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5047var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5067var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5109var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5151var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5184var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5226var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5268var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5298var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5334var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5370var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5385var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 5411var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5426var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, 5488var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5556var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5595var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5639var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5700var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5747var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5777var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5826var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5870var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5909var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5951var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 5978var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6023var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6068var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6092var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6116var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6162var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6207var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6228var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6260var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6335var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6384compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6415var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6467var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6485compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6523var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6598var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6614compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6641var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6716var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6750compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6782var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6857var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6879compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 6911var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 6986var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 7008compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 7040var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7068var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7098var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7128var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7160var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7239var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7333var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7438var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7544var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7638var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7737var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7854var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 7974var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8071var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8168var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8249var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8338var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8390var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8502var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8506var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 8517var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 8550var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8587var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8591var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 8602var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 8672var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 8767var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9112var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9116var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 9127var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 9180var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9184var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 9209var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 9272var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9314var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9397var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9401var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 9412var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 9450var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9454var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 9465var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 9525var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9605var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9802var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9806var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 9817var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 9864var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 9868var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 9879var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 9948var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10077var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10291var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10411var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10534var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10817var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 10989var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11202var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11367var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11704var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 11997var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12181var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12185var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12196var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12244var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12248var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12266var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12331var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12335var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12346var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12381var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12385var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12396var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12438var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12442var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12478var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12551var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12555var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12573var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12638var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12642var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12678var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12738var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12742var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 12753var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 12817var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 12908var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13002var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13100var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13153var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13238var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13329var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13448var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13452var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 13463var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 13500var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13504var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 13515var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 13552var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13556var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 13570var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 13607var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13611var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 13622var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 13659var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13663var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 13674var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 13711var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13715var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 13726var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 13790var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13887var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 13982var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14041var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14170var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14174var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 14185var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 14219var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14223var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 14234var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 14268var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14272var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 14283var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 14320var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14324var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 14335var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 14425var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 14453var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 14520var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 14543var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 14619var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14681var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14772var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14776var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 14787var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 14821var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 14825var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 14836var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 15037var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15099var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15178var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15182var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 15193var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 15227var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15231var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 15242var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 15306var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithAllowUnsafe(true), 15371var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithAllowUnsafe(true), 15446var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15450var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll.WithAllowUnsafe(true), 15461var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll.WithAllowUnsafe(true), 15495var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15499var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll.WithAllowUnsafe(true), 15510var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll.WithAllowUnsafe(true), 15572var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15652var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15714var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15790var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15867var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15928var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15932var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 15946var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 15984var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 15988var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 15999var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 16031var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16035var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 16046var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 16083var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16145var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16201var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16218var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 16317var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 16344compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 16378var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 16391compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 16409var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 16455var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 16496var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16581var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 16682var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16699var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 16770var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16785var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 16860var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16879var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 16942var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 16961var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 17024var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17043var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 17094var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17114var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 17169var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17188var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 17256var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17275var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 17346var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17452var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17630var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17773var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 17909var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18052var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18161var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18308var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18461var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18647var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18795var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18799var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 18837var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 18923var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 18927var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 18981var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 19083var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19087var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 19098var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 19135var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19139var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 19150var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 19187var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19191var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 19202var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 19242var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19246var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 19257var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 19317var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19398var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19490var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19578var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19661var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19753var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19842var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19929var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 19946var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 20001var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 20020var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 20086var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 20103var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 20166var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 20183var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 20294var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20327compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20429var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20462compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20507var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20521compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20539var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 20587var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20601compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20619var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 20677var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20742var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 20812var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 20929var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 21040var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 21175var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 21294var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21311var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 21354var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21371var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 21457var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21474var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 21577var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21592var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 21698var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21717var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 21807var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21826var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 21909var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 21928var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 22066var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithAllowUnsafe(true), 22216var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithAllowUnsafe(true), 22286var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22331var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22402var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22482var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22544var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22620var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22701var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22772var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22776var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 22796var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 22834var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22838var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 22855var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 22890var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 22894var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 22905var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 22945var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23040var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23131var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23219var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 23236var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 23398var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 23439compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 23499var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 23516compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 23537var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 23567var compilation3 = CreateCompilationWithIL(source3, ilSource, options: TestOptions.DebugDll, 23629var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 23658var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 23719var compilation3 = CreateCompilationWithIL(source3, ilSource, options: TestOptions.DebugDll, 23799var compilation4 = CreateCompilationWithIL(source4, ilSource, options: TestOptions.DebugDll, 23829var compilation5 = CreateCompilationWithIL(source5, ilSource, options: TestOptions.DebugDll, 23889var compilation6 = CreateCompilationWithIL(source6, ilSource, options: TestOptions.DebugDll, 23919var compilation7 = CreateCompilationWithIL(source7, ilSource, options: TestOptions.DebugDll, 23981var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 24010var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 24071var compilation3 = CreateCompilationWithIL(source3, ilSource, options: TestOptions.DebugDll, 24151var compilation4 = CreateCompilationWithIL(source4, ilSource, options: TestOptions.DebugDll, 24181var compilation5 = CreateCompilationWithIL(source5, ilSource, options: TestOptions.DebugDll, 24241var compilation6 = CreateCompilationWithIL(source6, ilSource, options: TestOptions.DebugDll, 24271var compilation7 = CreateCompilationWithIL(source7, ilSource, options: TestOptions.DebugDll, 24362var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 24410var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 24599var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 24780var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 24797var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 24895var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 24910var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 25020var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25039var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 25090var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25110var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 25181var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25261var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25323var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25399var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25481var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25550var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25554var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 25577var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 25618var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25622var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 25639var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 25671var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25675var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 25686var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 25723var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25818var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25906var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 25923var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 26090var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 26131compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 26192var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 26209compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 26230var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 26256var compilation3 = CreateCompilationWithIL(source3, ilSource, options: TestOptions.DebugDll, 26311var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 26340var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 26369var compilation3 = CreateCompilationWithIL(source3, ilSource, options: TestOptions.DebugDll, 26442var compilation4 = CreateCompilationWithIL(source4, ilSource, options: TestOptions.DebugDll, 26468var compilation5 = CreateCompilationWithIL(source5, ilSource, options: TestOptions.DebugDll, 26495var compilation6 = CreateCompilationWithIL(source6, ilSource, options: TestOptions.DebugDll, 26525var compilation7 = CreateCompilationWithIL(source7, ilSource, options: TestOptions.DebugDll, 26585var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 26614var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 26643var compilation3 = CreateCompilationWithIL(source3, ilSource, options: TestOptions.DebugDll, 26716var compilation4 = CreateCompilationWithIL(source4, ilSource, options: TestOptions.DebugDll, 26742var compilation5 = CreateCompilationWithIL(source5, ilSource, options: TestOptions.DebugDll, 26769var compilation6 = CreateCompilationWithIL(source6, ilSource, options: TestOptions.DebugDll, 26799var compilation7 = CreateCompilationWithIL(source7, ilSource, options: TestOptions.DebugDll, 26890var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 26938var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 27139var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 27445var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 27462var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 27560var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 27575var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 27686var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 27705var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 27756var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 27776var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 27915var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28058var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28167var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28324var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28442var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28446var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 28480var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 28543var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28547var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 28558var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 28595var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28599var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 28610var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 28674var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28791var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28893var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 28910var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 29033var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 29066compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 29112var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 29126compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 29144var compilation2 = CreateCompilationWithIL(source2, ilSource, options: TestOptions.DebugDll, 29206var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 29271var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 29387var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 29518var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 29535var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 29633var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 29652var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 29739var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 29758var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 29878var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll.WithAllowUnsafe(true), 29945var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30010var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30078var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30164var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30349var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30540var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30544var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 30555var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 30598var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30602var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 30613var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 30655var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30659var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 30684var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 30741var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 30745var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 30756var compilation3 = CreateCompilation(source2 + source1, options: TestOptions.DebugDll, 30807var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31011var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31062var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31106var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31160var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31220var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31268var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31311var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31365var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31414var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31639var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31723var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 31735var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31795var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 31808var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 31858var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 31893var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 31927var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 32061var compilation1 = CreateCompilationWithIL(source1, ilSource, options: TestOptions.DebugDll, 32109var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 32160var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 32204var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32238var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32292var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32333var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32368var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32409var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32451var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32497var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32539var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32575var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32617var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32639var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32679var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32717var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32749var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32787var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32819var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32857var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32889var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32927var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32959var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 32997var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33029var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33067var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33089var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33120var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 33156var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33187var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 33223var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33254var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 33290var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 33321var compilation2 = CreateCompilation(source2, options: TestOptions.DebugDll, 33432""", options: TestOptions.DebugDll, parseOptions: TestOptions.RegularPreview, targetFramework: _supportingFramework).VerifyDiagnostics(
Symbols\SymbolErrorTests.cs (19)
18359var comp = CreateCompilation(source, options: TestOptions.DebugDll); 18387var comp = CreateCompilation(source, options: TestOptions.DebugDll); 18412var comp = CreateCompilation(source, options: TestOptions.DebugDll); 18437var comp = CreateCompilation(source, options: TestOptions.DebugDll); 18463var comp = CreateCompilation(source, options: TestOptions.DebugDll); 18483var comp = CreateCompilation(source, options: TestOptions.DebugDll); 18509var comp = CreateCompilation(source, options: TestOptions.DebugDll); 18532var comp = CreateCompilation(source, options: TestOptions.DebugDll); 20800options: TestOptions.DebugDll, 20865options: TestOptions.DebugDll, 21231comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(6)); 21234comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(7)); 21292comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(6)); 21295comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(7)); 21337comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(6)); 21356comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(7)); 21379var comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(7)); 21397comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(7)); 21424comp = CreateCompilation(text, parseOptions: TestOptions.Regular11, options: TestOptions.DebugDll.WithWarningLevel(7));
Symbols\SymbolExtensionTests.cs (4)
99var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 117var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 135var compilation = CreateCompilation(source, options: TestOptions.DebugDll); 154var compilation = CreateCompilation(source, options: TestOptions.DebugDll);
Symbols\UnsignedRightShiftTests.cs (58)
389var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 393compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 397compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 892var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 896compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 900compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 922var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 948var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 970var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1007var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1011compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1015compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1048var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1052compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1056compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1445var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1449compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1453compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1853var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1857compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1861compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1883var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1909var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1931var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 1990var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 2129var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2179var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2242var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 2278var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll); 2280var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { compilation0.ToMetadataReference() }, 2288var compilation3 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { compilation0.EmitToImageReference() }, 2318var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2404var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2443var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2538var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2635var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 2674var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll, 3428var compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3436compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3440var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 3445var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3453compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3480var compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3488compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3492var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 3497var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3505compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3532var compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3540compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3544var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 3549var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3557compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3584var compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3592compilation1 = CreateCompilation(source0 + source1, options: TestOptions.DebugDll, 3596var compilation0 = CreateCompilation(source0, options: TestOptions.DebugDll, 3601var compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3609compilation2 = CreateCompilation(source1, options: TestOptions.DebugDll, references: new[] { reference }, 3629var compilation1 = CreateCompilation(source1, options: TestOptions.DebugDll,
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (12)
Diagnostics\DiagnosticTest.cs (1)
2111var options = TestOptions.DebugDll.WithGeneralDiagnosticOption(ReportDiagnostic.Suppress);
Diagnostics\LineSpanDirectiveTests.cs (1)
608var verifier = CompileAndVerify(source, options: TestOptions.DebugDll);
Parsing\ReadOnlyStructs.cs (6)
40var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.Latest), options: TestOptions.DebugDll); 77var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.CSharp7), options: TestOptions.DebugDll); 105var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.Latest), options: TestOptions.DebugDll); 149var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.Latest), options: TestOptions.DebugDll.WithAllowUnsafe(true)); 182var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.Latest), options: TestOptions.DebugDll); 216var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.Latest), options: TestOptions.DebugDll);
Parsing\RefStructs.cs (3)
38var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.Latest), options: TestOptions.DebugDll); 54var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.CSharp7), options: TestOptions.DebugDll); 81var comp = CreateCompilationWithMscorlib45(text, parseOptions: TestOptions.Regular.WithLanguageVersion(LanguageVersion.Latest), options: TestOptions.DebugDll);
Syntax\SyntaxTreeTests.cs (1)
96var compilation = CSharpCompilation.Create("test", new[] { tree }, TargetFrameworkUtil.GetReferences(TargetFramework.Standard), TestOptions.DebugDll);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (5)
CSharpTestBase.cs (2)
2771new object[] { WithNullableEnable(TestOptions.DebugDll) }, 2772new object[] { WithNullableDisable(TestOptions.DebugDll) }
TestOptions.cs (3)
78public static readonly CSharpCompilationOptions DebugDllThrowing = DebugDll.WithMetadataReferenceResolver(new ThrowingMetadataReferenceResolver()); 90public static readonly CSharpCompilationOptions UnsafeDebugDll = DebugDll.WithAllowUnsafe(true); 96public static readonly CSharpCompilationOptions SigningDebugDll = DebugDll.WithStrongNameProvider(SigningTestHelpers.DefaultDesktopStrongNameProvider);
Microsoft.CodeAnalysis.CSharp.WinRT.UnitTests (1)
Metadata\WinMdEventTests.cs (1)
3556var comp = CreateEmptyCompilation("", WinRtRefs.Concat(new[] { ilRef }), TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All));
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (9)
EditAndContinue\EditAndContinueMethodDebugInfoReaderTests.cs (1)
65var compilation = CSharpTestBase.CreateCompilationWithMscorlib40AndSystemCore(tree, options: TestOptions.DebugDll);
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (6)
318Compilation compilation = CSharpTestBase.CreateCompilation(trees.ToArray(), options: TestOptions.DebugDll, targetFramework: DefaultTargetFramework, assemblyName: assemblyName); 518var compilation = CSharpTestBase.CreateCompilation(new[] { sourceTreeA1, sourceTreeB1, sourceTreeC1 }, options: TestOptions.DebugDll, targetFramework: DefaultTargetFramework, assemblyName: "P"); 2823var compilationV1 = CSharpTestBase.CreateCompilation(sourceV1, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, targetFramework: DefaultTargetFramework, assemblyName: "lib"); 3323var compilationA = CSharpTestBase.CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: DefaultTargetFramework, assemblyName: "A"); 3324var compilationB = CSharpTestBase.CreateCompilation(source1, options: TestOptions.DebugDll, targetFramework: DefaultTargetFramework, assemblyName: "B"); 3495var compilationV1 = CSharpTestBase.CreateCompilationWithMscorlib40(sourceV1, options: TestOptions.DebugDll, assemblyName: "lib");
Emit\CompilationOutputFilesTests.cs (1)
31var compilation = CSharpTestBase.CreateCompilationWithMscorlib40AndSystemCore(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, assemblyName: "lib");
Emit\CompilationOutputsTests.cs (1)
55var compilation = CSharpTestBase.CreateCompilationWithMscorlib40AndSystemCore(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, assemblyName: "lib");
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (2)
ProjectSystemShim\VisualStudioCompilationOutputFilesTests.cs (2)
39var compilation = CSharpTestBase.CreateCompilationWithMscorlib40AndSystemCore(source, parseOptions: TestOptions.Regular.WithNoRefSafetyRulesAttribute(), options: TestOptions.DebugDll, assemblyName: "lib"); 88var compilation = CSharpTestBase.CreateCompilationWithMscorlib40AndSystemCore(source, options: TestOptions.DebugDll, assemblyName: "lib");