UnityScript.Parser.UnityScriptParser.super_literal C# (CSharp) Method

super_literal() public method

public super_literal ( ) : SuperLiteralExpression
return SuperLiteralExpression
        public SuperLiteralExpression super_literal()
        {
            SuperLiteralExpression expression = null;
            IToken token = null;
            try
            {
                token = this.LT(1);
                this.match(0x27);
                if (base.inputState.guessing == 0)
                {
                    expression = new SuperLiteralExpression(ToLexicalInfo(token));
                }
            }
            catch (RecognitionException exception)
            {
                if (base.inputState.guessing != 0)
                {
                    throw;
                }
                this.reportError(exception);
                this.recover(exception, tokenSet_20_);
                return expression;
            }
            return expression;
        }
UnityScriptParser