variableLiteral.js 209 B

12345678910
  1. import { Literal } from './literal';
  2. import { Types } from './../../typeSystem/types';
  3. export class VariableLiteral extends Literal {
  4. constructor(id) {
  5. super(Types.UNDEFINED);
  6. this.id = id;
  7. }
  8. }