2 overrides of TryGetActiveSpan
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
848
protected override bool
TryGetActiveSpan
(SyntaxNode node, int statementPart, int minLength, out TextSpan span)
Microsoft.CodeAnalysis.VisualBasic.Features (1)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
896
Protected Overrides Function
TryGetActiveSpan
(node As SyntaxNode, statementPart As Integer, minLength As Integer, <Out> ByRef span As TextSpan) As Boolean
2 references to TryGetActiveSpan
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
1630
if (
TryGetActiveSpan
(statement, statementPart, minLength: statement.Span.Length, out var span))
1644
if (
TryGetActiveSpan
(node, part, minLength: 0, out span))