popScope method
void
popScope()
inherited
If there exists Scope.parent, then tail adopts that. This effectively pops the scope of execution. Otherwise nothing happens.
Implementation
void popScope() {
if (scope.parent == null) return;
//scope.dump();
scope = scope.parent!;
}