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
```import hammer as h
digit = h.ch_range('0', '9')
upper = h.ch_range('A', 'Z')
lower = h.ch_range('a', 'z')
chars = h.choice(digit, upper, lower)
chars.compile(h._PB_GLR)```
Reproduces on OS X Sierra. The LL(k) and LALR backends have not exhibited this behavior yet. (I tried with Gary's example.)
Is this specific to the Python binding or does it happen from C also?
In preliminary investigation I'm not able to reproduce this without the Python bindings. I'll also try some of the other bindings that use SWIG, to see if I can narrow down the problem.
Gary Berger reports that the following example, using the Python bindings, either segfaults or fails an assert with "unknown HCFChoice type":
Reproduces on OS X Sierra. The LL(k) and LALR backends have not exhibited this behavior yet. (I tried with Gary's example.)
The text was updated successfully, but these errors were encountered: