Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@lezer/generator
Advanced tools
[ WEBSITE | ISSUES | FORUM | CHANGELOG ]
This is an LR(1) (more precisely pseudo-LALR,with opt-in GLR) parser generator which outputs grammars that can be used by the Lezer parser.
This package exports both a command-line parser generator tool called lezer-generator
and a programming interface.
The grammar format that the tool accepts is documented in the system guide.
See test/cases/
for some simple example grammars, or lezer-javascript for a real grammar.
You can import "@lezer/generator/rollup"
to get a Rollup plugin that will transform files ending in .grammar
or .grammar.terms
(a pseudo-source referring to the terms produced by the .grammar
file) as part of the rollup build process.
import {lezer} from "@lezer/generator/rollup"
export default {
input: "./in.js",
output: {file: "out.js", format: "cjs"},
plugins: [lezer()]
}
The code is licensed under an MIT license.
1.2.4 (2023-06-12)
Fix a bug where precedences specified for local tokens were not properly applied.
FAQs
Parser generator for the incremental lezer parser
The npm package @lezer/generator receives a total of 33,119 weekly downloads. As such, @lezer/generator popularity was classified as popular.
We found that @lezer/generator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.