popScope method
void
popScope()
Implementation
void popScope() {
if (scope.parent == null) return;
//scope.dump();
scope = scope.parent!;
}
void popScope() {
if (scope.parent == null) return;
//scope.dump();
scope = scope.parent!;
}