(event: string, callback: Function)
| 50 | } |
| 51 | |
| 52 | private _addCallback(event: string, callback: Function) { |
| 53 | const callbacks = this._callbacks.get(event) || []; |
| 54 | callbacks.push(callback); |
| 55 | this._callbacks.set(event, callbacks); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | export class ProxySandBox { |
no test coverage detected