()
| 2414 | this.imag = imaginary; |
| 2415 | } |
| 2416 | toString() { |
| 2417 | return `${this.real}${this.imag < 0 ? '' : '+'}${this.imag}j`; |
| 2418 | } |
| 2419 | }); |
| 2420 | this.registerType('builtins.NoneType', class {}); |
| 2421 | this.registerType('builtins.object', class { |
no test coverage detected