hyperlark (TypeScript)
    Preparing search index...

    Interface Tree

    A non-terminal (rule) node.

    interface Tree {
        children: Node[];
        data: string;
        meta?: Meta;
    }
    Index
    children: Node[]
    data: string

    Rule name, e.g. "start", "expr". _ambig for an ambiguity:'explicit' alternation node.

    meta?: Meta

    Present only under propagate_positions.