interface TryStatement {
    block: BlockStatement;
    finalizer?: null | BlockStatement;
    handler?: null | CatchClause;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "TryStatement";
}

Hierarchy (View Summary)

Properties

finalizer?: null | BlockStatement
handler?: null | CatchClause
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "TryStatement"