MCPcopy Create free account
hub / github.com/SplootCode/splootcode / recursivelyValidate

Method recursivelyValidate

packages/core/src/language/node.ts:131–138  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

129 }
130
131 recursivelyValidate() {
132 this.validateSelf()
133 this.childSetOrder.forEach((childSetID) => {
134 this.getChildSet(childSetID).children.forEach((node) => {
135 node.recursivelyValidate()
136 })
137 })
138 }
139
140 recursivelyClearValidation() {
141 this.setValidity(true, '')

Callers 2

insertNodeMethod · 0.80
openFileMethod · 0.80

Calls 2

validateSelfMethod · 0.95
getChildSetMethod · 0.95

Tested by

no test coverage detected