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