Interface UnaryOperator

interface UnaryOperator {
    id: string;
    inner: Node[];
    isPostfix?: boolean;
    kind: "UnaryOperator";
    name?: string;
    opcode: "++" | "--" | "!" | "+" | "-" | "&" | "*";
    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[]
isPostfix?: boolean
kind: "UnaryOperator"

The kind of the node

name?: string
opcode: "++" | "--" | "!" | "+" | "-" | "&" | "*"
range?: { begin: clang.Location; end: clang.Location }
type: { desugaredQualType?: string; qualType: string; typeAliasDeclId?: string }