visitReturnStmt method
Implementation
@override
GzBaseNode visitReturnStmt(ReturnStmt expr) {
final args = expr.values.map((e) => e.accept(this)).toList();
return node('return', children: args, color: 'yellow', shape: 'box');
}
@override
GzBaseNode visitReturnStmt(ReturnStmt expr) {
final args = expr.values.map((e) => e.accept(this)).toList();
return node('return', children: args, color: 'yellow', shape: 'box');
}