agsamantha/node_modules/jintr/dist/nodes/BaseJSNode.js

8 lines
147 B
JavaScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
export default class BaseJSNode {
constructor(node, visitor) {
this.node = node;
this.visitor = visitor;
}
run() { }
}