popScope method

void popScope()

Implementation

void popScope() {
  if (_stack.length <= 1) return;
  _stack.removeLast();
}