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)
58
public readonly VirtualChar CurrentChar => Position <
Text
.Length ?
Text
[Position] : default;
64
=>
Text
[start..end];
68
if (Position ==
Text
.Length)
74
Position =
Text
.Length;
123
if (Position ==
Text
.Length)
128
var ch =
Text
[Position];
129
return CreateToken(GetKind(ch),
Text
[Position..(Position + 1)]);
244
while (Position <
Text
.Length)
442
if (position + i >=
Text
.Length ||
443
Text
[position + i] != val[i])
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
89
Contract.ThrowIfFalse(_lexer.Position == _lexer.
Text
.Length);
94
return new(_lexer.
Text
, root);