(target, name)
| 60 | return new Proxy(agent, { |
| 61 | __proto__: null, |
| 62 | get(target, name) { |
| 63 | if (name in target) return target[name]; |
| 64 | return function callVirtualMethod(params) { |
| 65 | return client.callMethod(`${domain}.${name}`, params); |
| 66 | }; |
| 67 | }, |
| 68 | }); |
| 69 | } |
| 70 |
nothing calls this directly
no test coverage detected