1 write to Text
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\StackFrame\StackFrameLexer.cs (1)
32
=>
Text
= text;
13 references to Text
Microsoft.CodeAnalysis.Features (13)
EmbeddedLanguages\StackFrame\StackFrameLexer.cs (11)
60
public readonly VirtualChar CurrentChar => Position <
Text
.Length ?
Text
[Position] : default;
66
=>
Text
.GetSubSequence(TextSpan.FromBounds(start, end));
70
if (Position ==
Text
.Length)
76
Position =
Text
.Length;
125
if (Position ==
Text
.Length)
130
var ch =
Text
[Position];
131
return CreateToken(GetKind(ch),
Text
.GetSubSequence(new TextSpan(Position, 1)));
246
while (Position <
Text
.Length)
445
if (position + i >=
Text
.Length ||
446
Text
[position + i] != val[i])
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
89
Contract.ThrowIfFalse(_lexer.Position == _lexer.
Text
.Length);
94
return new(_lexer.
Text
, root);