Urara-Blog/node_modules/.pnpm-store/v3/files/5d/e589b939f729dc5475a8809a81badac3aec413c33023c98dcdc89fedd0d22dd69341036dd71fb0c1e8074cd7e7479f6a1fb26c6dffd33d51f3d7877497d3c7
2022-08-14 01:14:53 +08:00

28 lines
576 B
Text

'use strict';
class Node {
constructor(node) {
this.type = node.type;
if (node.value) this.value = node.value;
if (node.match) this.match = node.match;
this.newline = node.newline || '';
}
get protected() {
return Boolean(this.match) && this.match[1] === '!';
}
}
class Block extends Node {
constructor(node) {
super(node);
this.nodes = node.nodes || [];
}
push(node) {
this.nodes.push(node);
}
get protected() {
return this.nodes.length > 0 && this.nodes[0].protected === true;
}
}
module.exports = { Node, Block };