6 references to Text
Microsoft.CodeAnalysis.CSharp (6)
Parser\LanguageParser.cs (1)
230builder.Add(SyntaxFactory.BadToken(null, lexer.TextWindow.Text.ToString(), null));
Parser\Lexer.cs (4)
735int end = TextWindow.Text.Length; 736info.Text = TextWindow.Text.ToString(TextSpan.FromBounds(startingPosition, end)); 2011var text = TextWindow.Text.GetSubText(TextSpan.FromBounds(savePosition, TextWindow.Position)); 2086var text = TextWindow.Text;
Parser\SyntaxParser.cs (1)
141var size = Math.Min(CachedTokenArraySize, this.lexer.TextWindow.Text.Length / 2);