copy method
Implementation
@override
WhileLoopStatement copy() {
return WhileLoopStatement.init(
isDoWhile,
condition.copy(),
List.from(bodyStatements.map((e) => e.copy())),
);
}
@override
WhileLoopStatement copy() {
return WhileLoopStatement.init(
isDoWhile,
condition.copy(),
List.from(bodyStatements.map((e) => e.copy())),
);
}