版博士V2.0程序
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.

ProcessingInstruction.js 796 B

пре 1 година
1234567891011121314151617181920
  1. "use strict";
  2. var __importDefault = (this && this.__importDefault) || function (mod) {
  3. return (mod && mod.__esModule) ? mod : { "default": mod };
  4. };
  5. Object.defineProperty(exports, "__esModule", { value: true });
  6. const CharacterData_1 = __importDefault(require("../character-data/CharacterData"));
  7. const NodeTypeEnum_1 = __importDefault(require("../node/NodeTypeEnum"));
  8. /**
  9. * Processing instruction node interface.
  10. *
  11. * Reference: https://developer.mozilla.org/en-US/docs/Web/API/ProcessingInstruction.
  12. */
  13. class ProcessingInstruction extends CharacterData_1.default {
  14. constructor() {
  15. super(...arguments);
  16. this.nodeType = NodeTypeEnum_1.default.processingInstructionNode;
  17. }
  18. }
  19. exports.default = ProcessingInstruction;
  20. //# sourceMappingURL=ProcessingInstruction.js.map