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

Method maps

packages/designer/src/document/node/props/props.ts:68–78  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

66 @obx.shallow private items: IProp[] = [];
67
68 @computed private get maps(): Map<string, Prop> {
69 const maps = new Map();
70 if (this.items.length > 0) {
71 this.items.forEach((prop) => {
72 if (prop.key) {
73 maps.set(prop.key, prop);
74 }
75 });
76 }
77 return maps;
78 }
79
80 readonly path = [];
81

Callers

nothing calls this directly

Calls 2

forEachMethod · 0.65
setMethod · 0.65

Tested by

no test coverage detected