XCompile
    Preparing search index...

    Interface Statement

    interface Statement {
        id: string;
        inner: Node[];
        kind:
            | "AttributedStmt"
            | "BreakStmt"
            | "CaseStmt"
            | "CompoundStmt"
            | "DeclStmt"
            | "DefaultStmt"
            | "DoStmt"
            | "ForStmt"
            | "NullStmt"
            | "ReturnStmt"
            | "StaticAssert"
            | "SwitchStmt"
            | "WhileStmt";
        name?: string;
        range?: { begin: clang.Location; end: clang.Location };
        type: TypeInfo;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    Hexadecimal ID for the node, e.g. "0x..."

    inner: Node[]
    kind:
        | "AttributedStmt"
        | "BreakStmt"
        | "CaseStmt"
        | "CompoundStmt"
        | "DeclStmt"
        | "DefaultStmt"
        | "DoStmt"
        | "ForStmt"
        | "NullStmt"
        | "ReturnStmt"
        | "StaticAssert"
        | "SwitchStmt"
        | "WhileStmt"

    The kind of the node

    name?: string
    range?: { begin: clang.Location; end: clang.Location }
    type: TypeInfo