interface BaseForXStatement {
    body: Statement;
    leadingComments?: Comment[];
    left: Pattern | VariableDeclaration;
    loc?: null | SourceLocation;
    range?: [number, number];
    right: Expression;
    trailingComments?: Comment[];
    type: string;
}

Hierarchy (View Summary)

Properties

body: Statement
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
right: Expression
trailingComments?: Comment[]
type: string