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

Method getProp

packages/designer/src/document/node/node.ts:813–815  ·  view source on GitHub ↗
(path: string, createIfNone = true)

Source from the content-addressed store, hash-verified

811 }
812
813 getProp(path: string, createIfNone = true): IProp | null {
814 return this.props.query(path, createIfNone) || null;
815 }
816
817 getExtraProp(key: string, createIfNone = true): IProp | null {
818 return this.props.get(getConvertedExtraKey(key), createIfNone) || null;

Callers 4

setExtraPropMethod · 0.95
getPropValueMethod · 0.95
setPropValueMethod · 0.95
clearPropValueMethod · 0.95

Calls 1

queryMethod · 0.65

Tested by

no test coverage detected