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
For grammars that have rules with one-child sequence (i.e. delegating to other rules) an optimisation measure will suppress those node from the parser model.
This causes problems in semantic analysis as the visitors will not get called.
Of course. But can't tell when I'll have time to do it. if you have time and this issue is hurting you maybe you could try? It shouldn't be very hard. I'll be glad to review PR.
For grammars that have rules with one-child sequence (i.e. delegating to other rules) an optimisation measure will suppress those node from the parser model.
This causes problems in semantic analysis as the visitors will not get called.
Here
_min, q1, med...
rules are delegating tonumber
rule.If we now write visitor method:
If will not get called as the
number
node from the parser model is suppressed.This optimisation measure should be controlled with a parser param.
The text was updated successfully, but these errors were encountered: