// okay there is no function tokens, then try to parse it as a simple function expression
SimpleToken token = new SimpleToken(new SimpleTokenType(TokenType.functionStart, expression), 0);
SimpleFunctionExpression function = new SimpleFunctionExpression(token);
function.addText(expression);
return function.createExpression(expression, false);
}
}