MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / get

Method get

packages/shell/src/model/editor-view.ts:19–24  ·  view source on GitHub ↗
(target, prop, receiver)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

getMethod · 0.65

Tested by

no test coverage detected