智能照明系统APP-本地串口
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.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/47/47185b8841b71c5e890163f9a59...

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
};