visitForIterLoopStmt method
Implementation
@override
String visitForIterLoopStmt(ForIterLoopStmt forIterLoopStmt) {
final vars = forIterLoopStmt.vars.map((e) => e.lexeme).join(',');
final exprs = forIterLoopStmt.exprs.map((e) => e.accept(this)).join(',');
final body = forIterLoopStmt.body.map((e) => e.accept(this)).join('/n');
return 'for $vars in $exprs do\n$body\nend';
}