interface CatchClause {
    body: BlockStatement;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    param: null | Pattern;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "CatchClause";
}

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
loc?: null | SourceLocation
param: null | Pattern
range?: [number, number]
trailingComments?: Comment[]
type: "CatchClause"