1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/node_modules/@lezer/lr
2024-08-05 11:37:04 -03:00
..
dist Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
LICENSE add p2p support for HLS https://github.com/Novage/p2p-media-loader 2023-02-13 14:41:08 -03:00
package.json Libs updates and new version with option to pin videos on channel 2024-08-05 11:37:04 -03:00
README.md Do not ignore node_modules 2022-06-30 12:23:35 -03:00

@lezer/lr

[ WEBSITE | ISSUES | FORUM | CHANGELOG ]

Lezer ("reader" in Dutch, pronounced pretty much as laser) is an incremental GLR parser intended for use in an editor or similar system, which needs to keep a representation of the program current during changes and in the face of syntax errors.

It prioritizes speed and compactness (both of parser table files and of syntax tree) over having a highly usable parse tree—trees nodes are just blobs with a start, end, tag, and set of child nodes, with no further labeling of child nodes or extra metadata.

This package contains the run-time LR parser library. It consumes parsers generated by @lezer/generator.

The parser programming interface is documented on the website.

The code is licensed under an MIT license.

This project was hugely inspired by tree-sitter.