interface ForStatement {
    body: Statement;
    init?: null | Expression | VariableDeclaration;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    test?: null | Expression;
    trailingComments?: Comment[];
    type: "ForStatement";
    update?: null | Expression;
}

Hierarchy (View Summary)

Properties

body: Statement
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
test?: null | Expression
trailingComments?: Comment[]
type: "ForStatement"
update?: null | Expression