IronPython.Compiler.Ast.PythonNameBinder.PopScope C# (CSharp) Method

PopScope() private method

private PopScope ( ) : void
return void
        private void PopScope() {
            _scopes.Add(_currentScope);
            _currentScope = _currentScope.Parent;
            _finallyCount.RemoveAt(_finallyCount.Count - 1);
        }