Boo.Lang.Parser.BooParserBase.super_literal C# (CSharp) Метод

super_literal() защищенный Метод

protected super_literal ( ) : SuperLiteralExpression
Результат SuperLiteralExpression
        protected SuperLiteralExpression super_literal()
        {
            SuperLiteralExpression e;

            IToken  t = null;
            e = null;

            try {      // for error handling
            t = LT(1);
            match(SUPER);
            if (0==inputState.guessing)
            {
                e = new SuperLiteralExpression(ToLexicalInfo(t));
            }
            }
            catch (RecognitionException ex)
            {
            if (0 == inputState.guessing)
            {
                reportError(ex, "super_literal");
                recover(ex,tokenSet_41_);
            }
            else
            {
                throw ex;
            }
            }
            return e;
        }
BooParserBase