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