(instance, klass)
| 95 | } |
| 96 | |
| 97 | function _assertClass(instance, klass) { |
| 98 | if (!(instance instanceof klass)) { |
| 99 | throw new Error(`expected instance of ${klass.name}`); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | let stack_pointer = 128; |
| 104 |
no outgoing calls
no test coverage detected