modify something #1

Open
wang wants to merge 1 commit from check-if-conflict into main

View file

@ -470,10 +470,13 @@ class UtilityServerStub {
* the name of the addXML specific function
*/
dumpXML(args) {
const xmlDumper = new this.mod.datastore.XMLDumper(this.mod.writer);
Review

Test review

Test review
if (args.ids === undefined) {
throw new Error('Need an object id to add to XML dumper')
}
const xmlDumper = new this.mod.datastore.XMLDumper(this.mod.writer);
xmlDumper.AddAuxiliaryData(this.mod.writer);
let evalArgs
args.ids.forEach((id) => {
if (isNaN(id)) { evalArgs = '"' + id + '"'; }