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

Hierarchy (View Summary)

Properties

await: boolean
body: Statement
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
right: Expression
trailingComments?: Comment[]
type: "ForOfStatement"