dump method
void
dump()
Print the variable entries in this scope.
Implementation
void dump() {
for (final kv in vars.entries) {
print('${kv.key} -> ${kv.value.toString()}');
}
}
Print the variable entries in this scope.
void dump() {
for (final kv in vars.entries) {
print('${kv.key} -> ${kv.value.toString()}');
}
}