9 references to CharacterWindow
Microsoft.CodeAnalysis.CSharp (5)
Parser\Lexer.cs (2)
1345var characterWindow = TextWindow.CharacterWindow; 2340TextWindow.CharacterWindow.AsSpan(TextWindow.LexemeRelativeStart, width),
Parser\QuickScanner.cs (2)
203var charWindow = TextWindow.CharacterWindow; 238TextWindow.CharacterWindow.AsSpan(TextWindow.LexemeRelativeStart, i - TextWindow.LexemeRelativeStart),
Parser\SlidingTextWindow.cs (1)
381return this.CharacterWindow[_offset - 1];
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
LexicalAndXml\LexicalTests.cs (4)
4638Assert.True(lexer.TextWindow.CharacterWindow is ['.', '0', '3', ',', ..], $"Start of window was '{new string(lexer.TextWindow.CharacterWindow, 0, 4)}'"); 4658Assert.True(lexer.TextWindow.CharacterWindow is ['.', '0', '3', ',', ..], $"Start of window was '{new string(lexer.TextWindow.CharacterWindow, 0, 4)}'");