popScope method

void popScope()

Implementation

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