1 instantiation of MarkedSpan
Microsoft.CodeAnalysis.Test.Utilities (1)
MarkedSource\SourceWithMarkedNodes.cs (1)
66
yield return new
MarkedSpan
(new TextSpan(absoluteOffset, markedSyntax.Length), new TextSpan(match.Index, match.Length), tagName.Value, parsedKind, id, parentId);
4 references to MarkedSpan
Microsoft.CodeAnalysis.Test.Utilities (4)
MarkedSource\SourceWithMarkedNodes.cs (4)
30
public readonly ImmutableArray<
MarkedSpan
> MarkedSpans;
52
private static IEnumerable<
MarkedSpan
> GetSpansRecursive(string markedSource, int offset, Func<string, int> getSyntaxKind)
68
foreach (
var
nestedSpan in GetSpansRecursive(markedSyntax.Value, absoluteOffset, getSyntaxKind))
120
private static SyntaxNode GetNode(SyntaxNode root,
MarkedSpan
marker)