Interface IfStmt

interface IfStmt {
    hasElse?: boolean;
    id: string;
    inner?: Node[];
    kind: "IfStmt";
    name?: string;
    range?: { begin: clang.Location; end: clang.Location };
    type: {
        desugaredQualType?: string;
        qualType: string;
        typeAliasDeclId?: string;
    };
}

Hierarchy (View Summary)

Properties

hasElse?: boolean
id: string

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

inner?: Node[]
kind: "IfStmt"

The kind of the node

name?: string
range?: { begin: clang.Location; end: clang.Location }
type: { desugaredQualType?: string; qualType: string; typeAliasDeclId?: string }