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

    Interface ProductionSpec

    A context-free, context-sensitive, stochastic, or parametric production.

    interface ProductionSpec {
        condition?: ProductionPredicate;
        contextMode?: "linear" | "axial";
        id: string;
        ignoreSymbols?: readonly SymbolId[];
        leftContext?: readonly SymbolId[];
        operationId?: string;
        predecessor: SymbolId;
        predicateId?: string;
        priority?: number;
        rightContext?: readonly SymbolId[];
        successor: readonly ModuleSymbol[] | ProductionSuccessor;
        weight?: number;
    }
    Index
    contextMode?: "linear" | "axial"
    id: string
    ignoreSymbols?: readonly SymbolId[]
    leftContext?: readonly SymbolId[]
    operationId?: string
    predecessor: SymbolId
    predicateId?: string
    priority?: number
    rightContext?: readonly SymbolId[]
    successor: readonly ModuleSymbol[] | ProductionSuccessor
    weight?: number