Felix S.

Results 25 issues of Felix S.

Tested on TeX Live 2017. Should also work on several older versions. My initial motivation for this change is that I happened to run into a nasty issue where TeX's...

Own code, improvement/bugfix ### In order to be accepted and merged into yt-dlp each piece of code must be in public domain or released under [Unlicense](http://unlicense.org/). Check one of the...

do-not-merge
site-bug

Currently, the latest released version does not distinguish e.g. `f()` from `(f())` in the AST. These expressions are not equivalent; the former evaluates to all the return values of `f()`,...

incorrect parsing
compat hazard

This project has hardly been very keen at keeping up with ~~the Kardashians~~ latest developments in the JavaScript world. As a result, the testsuite has experienced some failures as of...

testsuite

Currently, this code works: ```js luaparse.parse({ wait: true }).write('foo = "'); console.info(luaparse.parse('bar"')); ``` It prints out: ```json { "type": "Chunk", "body": [ { "type": "AssignmentStatement", "variables": [ { "type": "Identifier",...

enhancement
compat hazard

Merging will resolve #61.

Also expand README with guidance on when to use which encoding mode. See also: #68.

The parentheses are represented as a UnaryExpression with the empty string as the operator. This choice minimises compatibility breaks: users only need to add precedence information and/or identity evaluation for...

Right now this parser can only generate an AST when the entire input has been put in a single string value; only lexing seems to be possible in a streaming...

enhancement
compat hazard

This issue tracks all changes required to support parsing Lua 5.4 code. While PUC-Rio hasn't officially released Lua 5.4 yet, it already appears it is going to bring at least...

enhancement