MCPcopy Index your code
hub / github.com/nodejs/node / get

Function get

lib/internal/debugger/inspect.js:62–67  ·  view source on GitHub ↗
(target, name)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

callMethodMethod · 0.80

Tested by

no test coverage detected