visitBlock method
Implementation
@override
visitBlock(BlockStatement node) {
dynamic rtn;
for (Node stmt in node.body) {
rtn = stmt.visitBy(this);
}
return rtn;
}
@override
visitBlock(BlockStatement node) {
dynamic rtn;
for (Node stmt in node.body) {
rtn = stmt.visitBy(this);
}
return rtn;
}