Interface Goto

interface Goto {
    id: string;
    inner: never;
    kind: "GotoStmt";
    name?: string;
    range?: { begin: clang.Location; end: clang.Location };
    targetLabelDeclId: string;
    type: {
        desugaredQualType?: string;
        qualType: string;
        typeAliasDeclId?: string;
    };
}

Hierarchy (View Summary)

Properties

id: string

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

inner: never
kind: "GotoStmt"

The kind of the node

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