public static final Any postinc(Any target, String field, Context context)
{
Any value = target.getAttribute(context, field);
target.setAttribute(context, field, value.increase());
return value;
}
public static final Any assign(Any value, Any target, String field, Context context)