closeRootScope static method

void closeRootScope()

RU: Метод закрывает главный Scope. ENG: The method close the main Scope.

Implementation

static void closeRootScope() {
  if (_rootScope != null) {
    _rootScope = null;
  }
}