7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
|
import BaseJSNode from './BaseJSNode.js';
|
||
|
export default class Literal extends BaseJSNode {
|
||
|
run() {
|
||
|
return this.node.value;
|
||
|
}
|
||
|
}
|