A code generator of recursive descent parser.
-
Updated
Oct 17, 2025 - TypeScript
In computer science, an LL parser (Left-to-right, leftmost derivation) is a top-down parser for a restricted context-free language. It parses the input from Left to right, performing Leftmost derivation of the sentence.
A code generator of recursive descent parser.
An ECMAScript Parser, according to the ESTree Spec