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)
60public readonly VirtualChar CurrentChar => Position < Text.Length ? Text[Position] : default; 66=> Text.GetSubSequence(TextSpan.FromBounds(start, end)); 70if (Position == Text.Length) 76Position = Text.Length; 125if (Position == Text.Length) 130var ch = Text[Position]; 131return CreateToken(GetKind(ch), Text.GetSubSequence(new TextSpan(Position, 1))); 246while (Position < Text.Length) 445if (position + i >= Text.Length || 446Text[position + i] != val[i])
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
89Contract.ThrowIfFalse(_lexer.Position == _lexer.Text.Length); 94return new(_lexer.Text, root);