Esempio n. 1
0
        void ILocalSymbolTable.PushScope()
        {
            Debug.Assert(currentScope != null);

            SymbolScope parentScope = currentScope;

            currentScope = new SymbolScope(parentScope);
            parentScope.AddChildScope(currentScope);
        }