MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / clearBindingRecursive

Function clearBindingRecursive

tools/transformers/native-class.js:198–205  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

196}
197
198function clearBindingRecursive(node) {
199 if (!node || typeof node.kind !== 'number') {
200 return;
201 }
202
203 removeBindingData(node);
204 ts.forEachChild(node, (child) => clearBindingRecursive(child));
205}
206
207function setSynthesizedRangeRecursive(node) {
208 if (!node || typeof node.kind !== 'number') {

Callers 1

prepareSynthesizedNodeFunction · 0.85

Calls 1

removeBindingDataFunction · 0.85

Tested by

no test coverage detected