Interface DoWhileStatement

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

Properties

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