Exemple #1
0
        private LexerState CommentOrOperatorState(char cs)
        {
            if (cs == '/' && _iterator.PeekNext() == '/')
            {
                return(_commentState);
            }

            return(_operatorState);
        }