Beispiel #1
0
        private string LexSyntaxTrivia()
        {
            TextWindow.Start();

            var ch = TextWindow.PeekChar();

            while (char.IsWhiteSpace(ch))
            {
                TextWindow.AdvanceChar();
                ch = TextWindow.PeekChar();
            }

            return(TextWindow.GetText());
        }