throw new Error("Missing return statement in function");
}
final public LiteralTerm parseLiteralTerm() throws ParseException {
Token t = null;
LiteralTerm ls = null;
t = jj_consume_token(NON_EXPRESSION_TEXT);
ls = new LiteralTerm(t.image);
{
if(true) return ls;
}
throw new Error("Missing return statement in function");
}