import { Literal } from './literal';
import { Types } from './../../typeSystem/types';

export class VariableLiteral extends Literal {
  
  constructor(id) {
    super(Types.UNDEFINED);
    this.id = id;
  }

  toString () {
    return this.id;
  }
}