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

Function markSynthesizedRecursive

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

Source from the content-addressed store, hash-verified

175}
176
177function markSynthesizedRecursive(node) {
178 if (!node || typeof node.kind !== 'number') {
179 return;
180 }
181
182 if (typeof node.flags === 'number') {
183 node.flags |= ts.NodeFlags.Synthesized;
184 }
185
186 ts.forEachChild(node, (child) => markSynthesizedRecursive(child));
187}
188
189function removeBindingData(node) {
190 delete node.symbol;

Callers 1

prepareSynthesizedNodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected