agsamantha/node_modules/jintr/dist/nodes/BaseJSNode.js
2024-10-02 15:15:21 -05:00

7 lines
147 B
JavaScript

export default class BaseJSNode {
constructor(node, visitor) {
this.node = node;
this.visitor = visitor;
}
run() { }
}