Ejemplo n.º 1
0
        public void ResetIndent()
        {
            var scope = IndentScope.Get();

            scope.Enter(0, 0);
            scopes.Push(scope);
        }
Ejemplo n.º 2
0
        public void PushIndent(int delay = 0)
        {
            var scope = IndentScope.Get();

            scope.Enter(realIndentLevel + 1, delay);
            scopes.Push(scope);
        }