AsmHighlighter.Lexer.Scanner.yylex C# (CSharp) Method

yylex() public method

public yylex ( ) : int
return int
        public override int yylex()
        {
            // parserMax is set by reflecting on the Tokens
            // enumeration.  If maxParseTokeen is defined
            // that is used, otherwise int.MaxValue is used.
            //
            int next;
            do { next = Scan(); } while (next >= parserMax);
            return next;
        }