2 types derived from AbstractEditAndContinueAnalyzer
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
27internal sealed class CSharpEditAndContinueAnalyzer : AbstractEditAndContinueAnalyzer
Microsoft.CodeAnalysis.VisualBasic.Features (1)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
20Inherits AbstractEditAndContinueAnalyzer
1 instantiation of AbstractEditAndContinueAnalyzer
Microsoft.CodeAnalysis.VisualBasic.Features (1)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
38MyBase.New(testFaultInjector)
10 references to AbstractEditAndContinueAnalyzer
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
EditAndContinue\Helpers\CSharpEditAndContinueTestHelpers.cs (1)
24public override AbstractEditAndContinueAnalyzer Analyzer => _analyzer;
EditAndContinue\Helpers\EditingTestBase.cs (2)
122var match = CreateAnalyzer().GetTestAccessor().ComputeBodyMatch(m1, m2, Array.Empty<AbstractEditAndContinueAnalyzer.ActiveNode>(), diagnostics, out var oldHasStateMachineSuspensionPoint, out var newHasStateMachineSuspensionPoint); 196_ = CreateAnalyzer().GetTestAccessor().ComputeBodyMatch(body1, body2, Array.Empty<AbstractEditAndContinueAnalyzer.ActiveNode>(), diagnostics, out var oldHasStateMachineSuspensionPoint, out var newHasStateMachineSuspensionPoint);
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (3)
EditAndContinue\EditAndContinueTestHelpers.cs (3)
21using static Microsoft.CodeAnalysis.EditAndContinue.AbstractEditAndContinueAnalyzer; 44public abstract AbstractEditAndContinueAnalyzer Analyzer { get; } 437internal static IEnumerable<KeyValuePair<SyntaxNode, SyntaxNode>> GetMethodMatches(AbstractEditAndContinueAnalyzer analyzer, Match<SyntaxNode> bodyMatch)
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
6091private readonly AbstractEditAndContinueAnalyzer _abstractEditAndContinueAnalyzer; 6093public TestAccessor(AbstractEditAndContinueAnalyzer abstractEditAndContinueAnalyzer)
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (2)
EditAndContinue\Helpers\EditingTestBase.vb (1)
147Dim match = CreateAnalyzer().GetTestAccessor().ComputeBodyMatch(m1, m2, Array.Empty(Of AbstractEditAndContinueAnalyzer.ActiveNode)(), diagnostics, oldHasStateMachineSuspensionPoint, newHasStateMachineSuspensionPoint)
EditAndContinue\Helpers\VisualBasicEditAndContinueTestHelpers.vb (1)
23Public Overrides ReadOnly Property Analyzer As AbstractEditAndContinueAnalyzer