diff --git a/astprinter.d b/astprinter.d
index f6c2d47..1b7ed06 100644
--- a/astprinter.d
+++ b/astprinter.d
@@ -322,7 +322,7 @@ class XMLPrinter : ASTVisitor
output.writeln("");
else
output.writeln("");
+ continueStatement.label.value, "\"/>");
}
override void visit(DebugCondition debugCondition)
diff --git a/scripts/README.md b/scripts/README.md
new file mode 100644
index 0000000..d339b6f
--- /dev/null
+++ b/scripts/README.md
@@ -0,0 +1,10 @@
+# Extra Scripts
+Extra scripts that use DScanner to produce their output. These scripts assume a UNIX environment.
+
+### importgraph.sh
+Displays a graph of the imports of the given D files.
+Requires Imagemagick and Graphviz
+
+### uml.sh
+Displays a basic class diagram of classes, structs, and interfaces in the given D file.
+Requires Imagemagic, XSLTProc, and Graphviz
\ No newline at end of file
diff --git a/scripts/importgraph.sh b/scripts/importgraph.sh
new file mode 100755
index 0000000..0c9c1a1
--- /dev/null
+++ b/scripts/importgraph.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+output=$(echo "digraph {")
+for i in "$@"; do
+ m=$(echo $i | sed -e "s/^\.\///" -e "s/\//\./g" -e "s/\.d$//")
+ output=$output$(dscanner --imports $i 2>/dev/null | sort | uniq | xargs -I{} echo "\"" $m "\"->\"" {} "\";")
+done
+output=$output$(echo "}")
+echo $output | unflatten -l 3 -f | dot -Tpng > out.png
+display out.png
diff --git a/scripts/uml.sh b/scripts/uml.sh
new file mode 100755
index 0000000..51ae6b9
--- /dev/null
+++ b/scripts/uml.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+dscanner $1 --ast | xsltproc uml.xsl - | dot -Tpng > $(basename $1 .d).png
+#dscanner $1 --ast | xsltproc uml.xsl - | dot -Tpng | display -
\ No newline at end of file
diff --git a/scripts/uml.xsl b/scripts/uml.xsl
new file mode 100644
index 0000000..bba7b60
--- /dev/null
+++ b/scripts/uml.xsl
@@ -0,0 +1,55 @@
+
+
+
+
+digraph {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file