mirror of
https://github.com/irmen/prog8.git
synced 2024-11-04 19:05:57 +00:00
fix xmlwriter
This commit is contained in:
parent
a44d853c1b
commit
f3960d21a8
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user