5 instantiations of CSharpEditAndContinueAnalyzer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (4)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (2)
126var analyzer = new CSharpEditAndContinueAnalyzer(); 753var analyzer = new CSharpEditAndContinueAnalyzer(node =>
EditAndContinue\Helpers\CSharpEditAndContinueTestHelpers.cs (1)
21_analyzer = new CSharpEditAndContinueAnalyzer(faultInjector);
EditAndContinue\Helpers\EditingTestBase.cs (1)
34return new CSharpEditAndContinueAnalyzer(testFaultInjector: null);
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
40return new CSharpEditAndContinueAnalyzer(testFaultInjector: null);
11 references to CSharpEditAndContinueAnalyzer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (9)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (5)
64var actual = CSharpEditAndContinueAnalyzer.GetDiagnosticSpan(node, EditKind.Update); 102span = CSharpEditAndContinueAnalyzer.TryGetDiagnosticSpanImpl(kind, null, EditKind.Update); 126var analyzer = new CSharpEditAndContinueAnalyzer(); 270/// Verifies that <see cref="CSharpEditAndContinueAnalyzer.TryGetDiagnosticSpanImpl"/> handles all <see cref="SyntaxKind"/>s. 753var analyzer = new CSharpEditAndContinueAnalyzer(node =>
EditAndContinue\Helpers\CSharpEditAndContinueTestHelpers.cs (1)
17private readonly CSharpEditAndContinueAnalyzer _analyzer;
EditAndContinue\Helpers\EditingTestBase.cs (1)
32internal static CSharpEditAndContinueAnalyzer CreateAnalyzer()
EditAndContinue\StatementEditingTests.cs (2)
9380/// Tests spilling detection logic of <see cref="CSharpEditAndContinueAnalyzer.ReportStateMachineSuspensionPointRudeEdits"/>. 9444/// Tests spilling detection logic of <see cref="CSharpEditAndContinueAnalyzer.ReportStateMachineSuspensionPointRudeEdits"/>.
Microsoft.CodeAnalysis.CSharp.Features (2)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (2)
2243private readonly CSharpEditAndContinueAnalyzer _analyzer; 2252CSharpEditAndContinueAnalyzer analyzer,