(callback, ...args)
| 124 | } |
| 125 | |
| 126 | exit(callback, ...args) { |
| 127 | if (!this.enabled) { |
| 128 | return ReflectApply(callback, null, args); |
| 129 | } |
| 130 | this.disable(); |
| 131 | try { |
| 132 | return ReflectApply(callback, null, args); |
| 133 | } finally { |
| 134 | this._enable(); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | getStore() { |
| 139 | if (this.enabled) { |
no test coverage detected