boolLiteral.js 212 B

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