@rbxts/a-plant-generator - v0.2.0
    Preparing search index...

    Interface CompiledGrammar

    Reusable production index produced by grammar compilation.

    interface CompiledGrammar {
        alphabetIndex: Readonly<Record<string, AlphabetSymbolSpec>>;
        productionIndex: Readonly<
            Record<
                string,
                readonly { spec: ProductionSpec; specificity: number }[],
            >,
        >;
        spec: GrammarSpec;
    }
    Index
    alphabetIndex: Readonly<Record<string, AlphabetSymbolSpec>>
    productionIndex: Readonly<
        Record<string, readonly { spec: ProductionSpec; specificity: number }[]>,
    >