packrattle icon indicating copy to clipboard operation
packrattle copied to clipboard

parser-combinator library (using GLL) for javascript

Results 5 packrattle issues
Sort by recently updated
recently updated
newest added

I noticed two problems so far: a. currently package seems to have a hardcoded dependency on `fs` module - this can be worked around by mocking the dependency in a...

I'm not sure whether this is a bug in the parser or whether I am doing something incorrect here. Below doesn't match: ``` const recParser = P.seq(() => P.alt(rec, "x"));...

Bumps [eslint](https://github.com/eslint/eslint) from 2.13.1 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...

dependencies

This example was extracted from a real-world example and simplified. It terminates quickly when I remove the `seq` from `seq(/a/)`. (Is there a recommended way of performance debugging cases like...

Just started using this library via node.js and immediately found that the optional combiner didn't work properly once I started nesting my parsers. I see that you have fixed this...