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

Hierarchy (View Summary)

Properties

body: Statement
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "WhileStatement"