From 19e774ebf7a162ae8f27aa0f69391ec58db4fb33 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Mon, 29 Jan 2018 14:17:43 -0800 Subject: [PATCH] Un-comment the debug functionality of the indentation stack --- src/dfmt/indentation.d | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/dfmt/indentation.d b/src/dfmt/indentation.d index f065945..f992ec3 100644 --- a/src/dfmt/indentation.d +++ b/src/dfmt/indentation.d @@ -159,14 +159,17 @@ struct IndentStack return cast(int) index; } - /+void dump() + /** + * Dumps the current state of the indentation stack to `stderr`. Used for debugging. + */ + void dump() { import std.stdio : stderr; import dparse.lexer : str; import std.algorithm.iteration : map; stderr.writefln("\033[31m%(%s %)\033[0m", arr[0 .. index].map!(a => str(a))); - }+/ + } private: