(target, prop, receiver)
| 17 | toProxy() { |
| 18 | return new Proxy(this, { |
| 19 | get(target, prop, receiver) { |
| 20 | if ((target[pluginContextSymbol] as any)[prop as string]) { |
| 21 | return Reflect.get(target[pluginContextSymbol], prop, receiver); |
| 22 | } |
| 23 | return Reflect.get(target, prop, receiver); |
| 24 | }, |
| 25 | }); |
| 26 | } |
| 27 |