fireConsume() public method

public fireConsume ( int c ) : void
c int
return void
        /// <summary>Get another token object from the token stream
        /// </summary>
        public override void  consume()
        {
            int la_1 = -99;

            la_1 = LA(1);
            base.consume();
            parserEventSupport.fireConsume(la_1);
        }
Exemplo n.º 2
0
        /// <summary>Get another token object from the token stream
        /// </summary>
        public override void  consume()
        {
            int la_1 = -99;

            try
            {
                la_1 = LA(1);
            }
            catch (TokenStreamException)
            {
            }
            base.consume();
            parserEventSupport.fireConsume(la_1);
        }