Represents a production in grammer.
Example: S -> aA can be represented as
{ symbol: "S", produces: ["a", "A"] }
Production
The ordered array of symbols that are produced in the production.
{string[]}
The non terminal whose production it is.
{string}
Generated using TypeDoc
Represents a production in grammer.
Example: S -> aA can be represented as
{ symbol: "S", produces: ["a", "A"] }
Production