2 overrides of TryGetEnclosingBreakpointSpan
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
845
protected override bool
TryGetEnclosingBreakpointSpan
(SyntaxNode root, int position, out TextSpan span)
Microsoft.CodeAnalysis.VisualBasic.Features (1)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
892
Protected Overrides Function
TryGetEnclosingBreakpointSpan
(root As SyntaxNode, position As Integer, <Out> ByRef span As TextSpan) As Boolean
2 references to TryGetEnclosingBreakpointSpan
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
2047
if (!
TryGetEnclosingBreakpointSpan
(oldNode, oldNode.SpanStart, out var oldBreakpointSpan) ||
2048
!
TryGetEnclosingBreakpointSpan
(newNode, newNode.SpanStart, out var newBreakpointSpan))