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.
16 lines
337 B
16 lines
337 B
"use strict";
|
|
|
|
const TextImpl = require("./Text-impl").implementation;
|
|
const NODE_TYPE = require("../node-type");
|
|
|
|
class CDATASectionImpl extends TextImpl {
|
|
constructor(args, privateData) {
|
|
super(args, privateData);
|
|
|
|
this.nodeType = NODE_TYPE.CDATA_SECTION_NODE;
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
implementation: CDATASectionImpl
|
|
};
|
|
|