Fix bug with AST output
This commit is contained in:
parent
c9eb658412
commit
4bac2671b4
|
@ -322,7 +322,7 @@ class XMLPrinter : ASTVisitor
|
||||||
output.writeln("<continueStatement/>");
|
output.writeln("<continueStatement/>");
|
||||||
else
|
else
|
||||||
output.writeln("<continueStatement label=\"",
|
output.writeln("<continueStatement label=\"",
|
||||||
continueStatement.label, "\"/>");
|
continueStatement.label.value, "\"/>");
|
||||||
}
|
}
|
||||||
|
|
||||||
override void visit(DebugCondition debugCondition)
|
override void visit(DebugCondition debugCondition)
|
||||||
|
|
|
@ -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
|
|
@ -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
|
|
@ -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 -
|
|
@ -0,0 +1,55 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
<xsl:output indent="no" omit-xml-declaration="yes"/>
|
||||||
|
<xsl:template match="module">
|
||||||
|
digraph {
|
||||||
|
<xsl:for-each select="//interfaceDeclaration">
|
||||||
|
<xsl:value-of select="./name"/>
|
||||||
|
<xsl:value-of select="'[shape="record" label="{'"/>
|
||||||
|
<xsl:value-of select="'<<interface>>\n'"/>
|
||||||
|
<xsl:value-of select="./name"/>
|
||||||
|
<xsl:call-template name="bodyHandler"/>
|
||||||
|
</xsl:for-each>
|
||||||
|
<xsl:for-each select="//structDeclaration">
|
||||||
|
<xsl:value-of select="./name"/>
|
||||||
|
<xsl:value-of select="'[shape="record" label="{'"/>
|
||||||
|
<xsl:value-of select="'<<struct>>\n'"/>
|
||||||
|
<xsl:value-of select="./name"/>
|
||||||
|
<xsl:call-template name="bodyHandler"/>
|
||||||
|
</xsl:for-each>
|
||||||
|
<xsl:for-each select="//classDeclaration">
|
||||||
|
<xsl:value-of select="./name"/>
|
||||||
|
<xsl:value-of select="'[shape="record" label="{'"/>
|
||||||
|
<xsl:value-of select="./name"/>
|
||||||
|
<xsl:call-template name="bodyHandler"/>
|
||||||
|
</xsl:for-each>
|
||||||
|
}
|
||||||
|
</xsl:template>
|
||||||
|
<xsl:template name="bodyHandler">
|
||||||
|
<xsl:value-of select="'|'"/>
|
||||||
|
<xsl:for-each select="./structBody/declaration/functionDeclaration">
|
||||||
|
<xsl:value-of select="name"/>
|
||||||
|
<xsl:value-of select="'('"/>
|
||||||
|
<xsl:for-each select="./parameters/parameter">
|
||||||
|
<xsl:value-of select="./name"/>
|
||||||
|
<xsl:value-of select="' : '"/>
|
||||||
|
<xsl:value-of select="./type/@pretty"/>
|
||||||
|
</xsl:for-each>
|
||||||
|
<xsl:value-of select="')'"/>
|
||||||
|
<xsl:value-of select="' : '"/>
|
||||||
|
<xsl:value-of select="./type/@pretty"/>
|
||||||
|
<xsl:value-of select="'\l'"/>
|
||||||
|
</xsl:for-each>
|
||||||
|
<xsl:value-of select="'|'"/>
|
||||||
|
<xsl:for-each select="./structBody/declaration/variableDeclaration">
|
||||||
|
<xsl:variable name="type" select="./type/@pretty"/>
|
||||||
|
<xsl:for-each select="./declarator">
|
||||||
|
<xsl:value-of select="name"/>
|
||||||
|
<xsl:value-of select="' : '"/>
|
||||||
|
<xsl:value-of select="$type"/>
|
||||||
|
<xsl:value-of select="'\l'"/>
|
||||||
|
</xsl:for-each>
|
||||||
|
</xsl:for-each>
|
||||||
|
<xsl:value-of select="'}"];'"/>
|
||||||
|
</xsl:template>
|
||||||
|
</xsl:stylesheet>
|
Loading…
Reference in New Issue