Good morning,
when I debug, in my dsl, an XExpression I'll stay on this for 3/4 steps because the tradution contains 3/4 Java instructions.
For example:
int_variable_name_2= int_variable_name_2+1;
is:
int_variable_name_2=(new Function0<Integer>() {
public Integer apply() {
int _int_variable_name_2 = int_variable_name_2;
int _plus = (_int_variable_name_2 + 1);
return _plus;
}
}.apply());
Is it possible to skip Function0 instructions with Step Over?
Thank you.