Pascal Bachor

Results 18 comments of Pascal Bachor

@PhilipMay

Hi @PhilipMay, no worries! Note that I intend to submit additional patches after this one (in particular support for absolute imports).

Thank you for the review and merge! I am happy to take over maintenance of the project. I guess that a transferal would be preferred over a fork as it...

Another example: ```js grammar({ name: "x", extras: ($) => [/[ \t]/], rules: { x: ($) => choice(seq("!", token.immediate("x")), /[ \t]/), }, }) ``` accepts `! x`. If (exactly) one of...

@ObserverOfTime Sorry, I had not noticed you had them. Will keep in mind.

This can also happen with anonymous patterns. The following grammar erroneously accepts `ab`. ```js grammar({ name: "x", rules: { x: ($) => seq("a", "b", /x/), }, }) ```

> Was it tested on real cluster? No changes detected? No. I could most probably do so in a couple weeks.

@mloiseleur Thanks for the info! I just shaved off a few patches that could make it into this week's release. For the main part I would then target the one...