7 references to Text
Microsoft.CodeAnalysis.CSharp (7)
Parser\LanguageParser.cs (1)
229builder.Add(SyntaxFactory.BadToken(null, lexer.TextWindow.Text.ToString(), null));
Parser\Lexer.cs (4)
734int end = TextWindow.Text.Length; 735info.Text = TextWindow.Text.ToString(TextSpan.FromBounds(startingPosition, end)); 2010var text = TextWindow.Text.GetSubText(TextSpan.FromBounds(savePosition, TextWindow.Position)); 2085var text = TextWindow.Text;
Parser\SlidingTextWindow.cs (1)
389return this.Text[this.Position - 1];
Parser\SyntaxParser.cs (1)
141var size = Math.Min(CachedTokenArraySize, this.lexer.TextWindow.Text.Length / 2);