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)
17public Document Document => UnderlyingObject.Document; 18public TextSpan TextSpan => UnderlyingObject.TextSpan; 19public string? LocationNameOpt => UnderlyingObject.LocationNameOpt; 20public 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);