(e: any)
| 16 | const i = 'ImaginaryUnit'; |
| 17 | |
| 18 | function exactness(e: any): boolean | undefined { |
| 19 | return isNumber(e) ? e.isExact : undefined; |
| 20 | } |
| 21 | |
| 22 | describe('exact Gaussian literals', () => { |
| 23 | it('Add(2, 3i) folds to a single exact literal', () => { |
no test coverage detected