boolLiteral.js 154 B

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