Traqula
    Preparing search index...

    Interface RuleDefArg

    interface RuleDefArg {
        CATCHUP: (until: number) => void;
        HANDLE_LOC: <T>(loc: Localized, nodeHandle: () => T) => undefined | T;
        PRINT: (...args: string[]) => void;
        PRINT_SPACE_LEFT: (...args: string[]) => void;
        PRINT_WORD: (...args: string[]) => void;
        PRINT_WORDS: (...args: string[]) => void;
        SUBRULE: <T, U extends any[]>(
            cstDef: GeneratorRule<any, any, T, U>,
            input: T,
            ...arg: U,
        ) => void;
    }
    Index

    Properties

    CATCHUP: (until: number) => void
    HANDLE_LOC: <T>(loc: Localized, nodeHandle: () => T) => undefined | T
    PRINT: (...args: string[]) => void
    PRINT_SPACE_LEFT: (...args: string[]) => void
    PRINT_WORD: (...args: string[]) => void
    PRINT_WORDS: (...args: string[]) => void
    SUBRULE: <T, U extends any[]>(
        cstDef: GeneratorRule<any, any, T, U>,
        input: T,
        ...arg: U,
    ) => void