literal.js 76 B

123456
  1. export class Literal {
  2. constructor (type) {
  3. this.type = type;
  4. }
  5. }