1 write to UnderlyingObject
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptBreakpointResolutionResultWrapper.cs (1)
15
=>
UnderlyingObject
= result;
6 references to UnderlyingObject
Microsoft.CodeAnalysis.EditorFeatures (6)
ExternalAccess\VSTypeScript\Api\VSTypeScriptBreakpointResolutionResultWrapper.cs (4)
17
public Document Document =>
UnderlyingObject
.Document;
18
public TextSpan TextSpan =>
UnderlyingObject
.TextSpan;
19
public string? LocationNameOpt =>
UnderlyingObject
.LocationNameOpt;
20
public bool IsLineBreakpoint =>
UnderlyingObject
.IsLineBreakpoint;
ExternalAccess\VSTypeScript\VSTypeScriptBreakpointResolutionService.cs (2)
27
=> (await _implementation.ResolveBreakpointAsync(document, textSpan, cancellationToken).ConfigureAwait(false)).
UnderlyingObject
;
30
=> (await _implementation.ResolveBreakpointsAsync(solution, name, cancellationToken).ConfigureAwait(false)).Select(r => r.
UnderlyingObject
);