public override void WriteOutput(string data) { OutputPane.Write(data); }
// -------------------------------------------------------------------------------------------- /// <summary> /// Displays spaces according to the current indentation level and size. /// </summary> // -------------------------------------------------------------------------------------------- private static void DisplayIndent() { OutputPane.Write(string.Empty.PadLeft(IndentLevel * IndentSize, ' ')); }