variableLiteral.js 162 B

12345678
  1. import { Literal } from './literal';
  2. export class VariableLiteral extends Literal {
  3. constructor(value) {
  4. super('variable');
  5. this.value = value;
  6. }
  7. }