Exemplo n.º 1
0
        private PqlExpr Expr(bool isExact)
        {
            PqlExpr retVal = new PqlExpr(isExact);
            string  expr   = currentToken.Value.ToString();
            Lexer   lexer  = new Lexer(expr);

            Eat(PqlTokenType.STRING);
            Parser.Parser parser = new Parser.Parser(lexer);
            retVal.ExprTree = parser.Expression();
            return(retVal);
        }