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

double_literal() public method

public double_literal ( ) : DoubleLiteralExpression
return DoubleLiteralExpression
        public DoubleLiteralExpression double_literal()
        {
            DoubleLiteralExpression expression = null;
            IToken token = null;
            try
            {
                token = this.LT(1);
                this.match(0x6a);
                if (base.inputState.guessing == 0)
                {
                    expression = CodeFactory.NewDoubleLiteralExpression(ToLexicalInfo(token), token.getText());
                }
            }
            catch (RecognitionException exception)
            {
                if (base.inputState.guessing != 0)
                {
                    throw;
                }
                this.reportError(exception);
                this.recover(exception, tokenSet_20_);
                return expression;
            }
            return expression;
        }
UnityScriptParser