コード例 #1
0
ファイル: FormatContext.cs プロジェクト: hbqzq/luafmt
        public void ResetIndent()
        {
            var scope = IndentScope.Get();

            scope.Enter(0, 0);
            scopes.Push(scope);
        }
コード例 #2
0
ファイル: FormatContext.cs プロジェクト: hbqzq/luafmt
        public void PushIndent(int delay = 0)
        {
            var scope = IndentScope.Get();

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