You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MSTA instead (even in yacc mode) creates different, incompatible (and quite big) piece of code for every line in the expression.
i'm not sure whether this is documented behaviour, but it'd be nice to have it supported when using MSTA as yacc replacement.
The text was updated successfully, but these errors were encountered:
OK. Thanks for reporting this. I designed this code 30 years ago and there are a lot of optimizations in the parser, especially for rule reductions and attribute passing. So the code you see might be an optimized version of the code for parsing by several rules. I'll investigate this when I have time.
bison and byacc both assign default action
{ $$ = $1; }
to expression as below:so that the result is identical to
MSTA instead (even in yacc mode) creates different, incompatible (and quite big) piece of code for every line in the expression.
i'm not sure whether this is documented behaviour, but it'd be nice to have it supported when using MSTA as yacc replacement.
The text was updated successfully, but these errors were encountered: