org.apache.commons.jexl2.Expression compiledExpression;
try {
DebugInfo debug = new DebugInfo(expressionString, line, column);
compiledExpression = engine.createExpression(expressionString, debug);
} catch (JexlException e) {
throw new ExpressionParsingException(line, column, expressionString, e);
}
return new JEXLExpression(compiledExpression, expressionString, line, column);
}