return terms.toArray(new Expr[terms.size()]);
}
private static Expr parse_ActionTerm(EObject action, ParseContext ctx) {
ETuple t = action.testTuple();
if (t != null && t.arity() >= 1 && ActionFunctions.contains(t.elm(1))) {
return new ActionCall(t, ctx);
} else {
return parse_ConditionExpression(action, ctx);
}