(target: any)
| 261 | } |
| 262 | |
| 263 | private createProxy(target: any) { |
| 264 | const proxy = this.createExceptionProxy(); |
| 265 | return new Proxy(target, { |
| 266 | get: proxy, |
| 267 | set: proxy, |
| 268 | }); |
| 269 | } |
| 270 | |
| 271 | private createExceptionProxy() { |
| 272 | return (receiver: Record<string, any>, prop: string) => { |
no test coverage detected