* expression or a reference.
*/
public Expression createExpression(String expression, JexlInfo info) {
// Parse the expression
ASTJexlScript tree = parse(expression, info, null);
if (tree.jjtGetNumChildren() > 1) {
logger.warn("The JEXL Expression created will be a reference"
+ " to the first expression from the supplied script: \"" + expression + "\" ");
}
return createExpression(tree, expression);
}