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