mirror of
https://github.com/irmen/prog8.git
synced 2026-04-25 12:33:55 +00:00
fix xmlwriter
This commit is contained in:
@@ -114,6 +114,14 @@ class AstToXmlConverter(internal val program: PtProgram,
|
||||
node.address.toString(),
|
||||
false)
|
||||
}
|
||||
StNodeType.MEMORYSLAB -> {
|
||||
node as StMemorySlab
|
||||
xml.elt("memoryslab")
|
||||
xml.writeAttribute("name", node.name)
|
||||
xml.writeAttribute("size", node.size.toString())
|
||||
xml.writeAttribute("align", node.align.toString())
|
||||
xml.endElt()
|
||||
}
|
||||
StNodeType.CONSTANT -> {
|
||||
node as StConstant
|
||||
xml.writeTextNode("const",
|
||||
|
||||
Reference in New Issue
Block a user