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

Method parent

packages/shell/src/model/setting-field.ts:109–115  ·  view source on GitHub ↗

* 获取设置属性的父设置属性

()

Source from the content-addressed store, hash-verified

107 * 获取设置属性的父设置属性
108 */
109 get parent(): IPublicModelSettingField | IPublicModelSettingTopEntry {
110 if (isSettingField(this[settingFieldSymbol].parent)) {
111 return SettingField.create(this[settingFieldSymbol].parent);
112 }
113
114 return SettingTopEntry.create(this[settingFieldSymbol].parent);
115 }
116
117 /**
118 * 获取顶级设置属性

Callers

nothing calls this directly

Calls 2

isSettingFieldFunction · 0.50
createMethod · 0.45

Tested by

no test coverage detected