You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
495 B

// Generated by CoffeeScript 2.4.1
(function() {
var NodeType, XMLDocumentFragment, XMLNode;
XMLNode = require('./XMLNode');
NodeType = require('./NodeType');
// Represents a CDATA node
module.exports = XMLDocumentFragment = class XMLDocumentFragment extends XMLNode {
// Initializes a new instance of `XMLDocumentFragment`
constructor() {
super(null);
this.name = "#document-fragment";
this.type = NodeType.DocumentFragment;
}
};
}).call(this);