Interface FunctionProtoType

interface FunctionProtoType {
    cc?: "cdecl";
    id: string;
    inner?: Node[];
    kind: "FunctionProtoType";
    loc: never;
    name?: string;
    range?: { begin: clang.Location; end: clang.Location };
    type: {
        desugaredQualType?: string;
        qualType: string;
        typeAliasDeclId?: string;
    };
}

Hierarchy (View Summary)

Properties

cc?: "cdecl"
id: string

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

inner?: Node[]
kind: "FunctionProtoType"

The kind of the node

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