Interface QualType

interface QualType {
    id: string;
    inner?: Node[];
    kind: "QualType";
    name?: string;
    qualifiers: "const" | "volatile";
    range?: { begin: clang.Location; end: clang.Location };
    type: {
        desugaredQualType?: string;
        qualType: string;
        typeAliasDeclId?: string;
    };
}

Hierarchy (View Summary)

Properties

id: string

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

inner?: Node[]
kind: "QualType"

The kind of the node

name?: string
qualifiers: "const" | "volatile"
range?: { begin: clang.Location; end: clang.Location }
type: { desugaredQualType?: string; qualType: string; typeAliasDeclId?: string }