pegjs icon indicating copy to clipboard operation
pegjs copied to clipboard

PEG.js: Parser generator for JavaScript

Results 101 pegjs issues
Sort by recently updated
recently updated
newest added

### Issue type - **Question** ### Description I am a LPeg.re user and I'm used to these features provided by LPeg Syntax | Description -- | -- `p^num` | exactly...

I'm thinking before releasing 0.12 I should drop support for Internet Explorer entirely (both from the library and from the online editor). There are a couple of reasons for this;...

feature
task
discussion

> Revision 2, Last updated on 19/01/2018 This is a dedicated issue that serves as both a specification and a roadmap to help design and implement support for the following...

feature
task
discussion

### Issue type - **Bug Report:** No. - **Feature Request:** Yes. - **Question:** No. - **Not an issue:** No. ### Prerequisites - **Can you reproduce the issue?:** N/A - **Did...

### Issue type - **Bug Report:** ### Description When using recursive rules rather than "*" for repetition, pegjs.org/online seems to slow down exponentially. This is probably related to the questions...

### Question Has anyone done work to convert the output of peg back to the input grammar? ### Description I have recently inherited a project that uses PEG. We have...

In `src/parser.pegjs`, "$" is allowed as the first letter of identifier. However, "$" is also an operator. So, if you have ``` $Integer "integer" = _ [0-9]+ { return parseInt(text(),...

bug

I'm learning to use Peg.js. and when I already have an AST tree, I do not know how to convert it into javascript code. thanks for helping

### Issue type - **Bug Report:** no - **Feature Request:** yes - **Question:** no - **Not an issue:** no ### Prerequisites - **Can you reproduce the issue?:** yes - **Did...

feature

### Issue type **Question:** ### Description Hello guys, I am trying to do dynamic expectation based on parser's given options. `dims` and `dateDims` are defined in the initializer ``` Dimension...