mwg API
    Preparing search index...

    Interface MwlCompiledNode

    interface MwlCompiledNode {
        attributeLocations?: Readonly<Record<string, MwlLocation>>;
        attributes: Readonly<Record<string, string>>;
        children: readonly MwlCompiledNode[];
        gettext?: readonly string[];
        location?: MwlLocation;
        tag: string;
        valueLocations?: Readonly<Record<string, MwlLocation>>;
    }
    Index
    attributeLocations?: Readonly<Record<string, MwlLocation>>

    exact locations retained for diagnostics on text-authored attributes

    attributes: Readonly<Record<string, string>>
    children: readonly MwlCompiledNode[]
    gettext?: readonly string[]

    attribute names that carried the gettext marker, when the node came from text

    location?: MwlLocation

    source location, kept so the runtime and tools can report where a node came from

    tag: string
    valueLocations?: Readonly<Record<string, MwlLocation>>