| 1234567891011121314151617181920 | 
							- import { Literal } from './literal';
 
- import { Types } from './../../typeSystem/types';
 
- import { convertToString } from './../../typeSystem/parsers';
 
- export class RealLiteral extends Literal {
 
-   
 
-   constructor(value) {
 
-     super(Types.REAL);
 
-     this.value = value;
 
-   }
 
-   toString() {
 
-     const text = convertToString(this.value, this.type);
 
-     if (this.parenthesis) {
 
-       return `(${text})`;
 
-     } else {
 
-       return text;
 
-     }
 
-   }
 
- }
 
 
  |