fix xmlwriter

This commit is contained in:
Irmen de Jong 2022-08-21 19:12:01 +02:00
parent a44d853c1b
commit f3960d21a8

View File

@ -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",