Interface WhileStatement

interface WhileStatement {
    body: Statement;
    condition: Expression;
    documentation?: string;
    id: number;
    nodeType: "WhileStatement";
    src: string;
}

Properties

body: Statement
condition: Expression
documentation?: string
id: number
nodeType: "WhileStatement"
src: string