版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

20 строки
796 B

  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