Interface ElaboratedType

interface ElaboratedType {
    id: string;
    inner?: Node[];
    kind: "ElaboratedType";
    name?: string;
    ownedTagDecl?: SubDecl;
    range?: { begin: clang.Location; end: clang.Location };
    type: TypeInfo;
}

Hierarchy (View Summary)

Properties

id: string

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

inner?: Node[]
kind: "ElaboratedType"

The kind of the node

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