示例#1
0
        Exp parseIdent()
        {
            FTextExp idexp = new FTextExp();

            idexp.IdentToken = CurrentToken;
            MoveNext();
            return(idexp);
        }
示例#2
0
        FTextExp createIdentExp(Token token)
        {
            if (token == null)
            {
                return(null);
            }
            token.Kind = TokenKind.Ident;
            FTextExp exp = new FTextExp();

            exp.IdentToken = token;
            //exp.IsFinally = true;
            return(exp);
        }