Files
2026-03-31 16:38:22 -07:00

23 lines
627 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.XmlComment = void 0;
const XmlNode_js_1 = require("./XmlNode.js");
/**
* A comment within an XML document.
*/
class XmlComment extends XmlNode_js_1.XmlNode {
constructor(content = '') {
super();
this.content = content;
}
get type() {
return XmlNode_js_1.XmlNode.TYPE_COMMENT;
}
toJSON() {
return Object.assign(XmlNode_js_1.XmlNode.prototype.toJSON.call(this), {
content: this.content,
});
}
}
exports.XmlComment = XmlComment;
//# sourceMappingURL=XmlComment.js.map