public void NewLine()
                    {
                        if (_indentStr == null)
                        {
                            _indentStr = Tokens.PrettyNewLine + new string(' ', _indent * 4);
                        }

                        _output.Add(_indentStr);
                    }
Beispiel #2
0
 void Write(string str) => _result.Add(str);