Interface RecoveryExpr

interface RecoveryExpr {
    id: string;
    inner: Node[];
    kind: "RecoveryExpr";
    name?: string;
    range?: { begin: clang.Location; end: clang.Location };
    type: TypeInfo;
    valueCategory: ValueCategory;
}

Hierarchy (View Summary)

Properties

id: string

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

inner: Node[]
kind: "RecoveryExpr"

The kind of the node

name?: string
range?: { begin: clang.Location; end: clang.Location }
type: TypeInfo
valueCategory: ValueCategory