realLiteral.js 192 B

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