XMLDocumentFragment.js 495 B

123456789101112131415161718192021
  1. // Generated by CoffeeScript 2.4.1
  2. (function() {
  3. var NodeType, XMLDocumentFragment, XMLNode;
  4. XMLNode = require('./XMLNode');
  5. NodeType = require('./NodeType');
  6. // Represents a CDATA node
  7. module.exports = XMLDocumentFragment = class XMLDocumentFragment extends XMLNode {
  8. // Initializes a new instance of `XMLDocumentFragment`
  9. constructor() {
  10. super(null);
  11. this.name = "#document-fragment";
  12. this.type = NodeType.DocumentFragment;
  13. }
  14. };
  15. }).call(this);