459460461462463464465466
} final public StringAtom stringAtom() throws ParseException { String obj; obj = getStringValue(); {if (true) return new StringAtom(obj.toString());} throw new Error("Missing return statement in function"); }
859860861862863864865866
} final public StringAtom getString() throws ParseException { Token t; t = jj_consume_token(STRING); {if (true) return new StringAtom(t.image);} throw new Error("Missing return statement in function"); }
650651652653654655656657658
Object obj; StringFunctionAtom stringFunctionAtom; obj = uObject(); { if (true) return new StringAtom(obj.toString()); } throw new Error("Missing return statement in function"); }