Shovel.Vm.Vm.CountCells C# (CSharp) Method

CountCells() private method

private CountCells ( ) : int
return int
        int CountCells()
        {
            var visited = new HashSet<object> ();
            return CountCellsImpl (this.stack.GetUsedStack (), visited)
                + CountCellsImpl (this.currentEnvironment, visited);
        }
Vm