MCPcopy Index your code
hub / github.com/nodejs/node / createBaseVariableLikeDeclaration

Function createBaseVariableLikeDeclaration

test/fixtures/snapshot/typescript.js:22875–22882  ·  view source on GitHub ↗
(kind, decorators, modifiers, name, type, initializer)

Source from the content-addressed store, hash-verified

22873 return node;
22874 }
22875 function createBaseVariableLikeDeclaration(kind, decorators, modifiers, name, type, initializer) {
22876 var node = createBaseBindingLikeDeclaration(kind, decorators, modifiers, name, initializer);
22877 node.type = type;
22878 node.transformFlags |= propagateChildFlags(type);
22879 if (type)
22880 node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */;
22881 return node;
22882 }
22883 //
22884 // Literals
22885 //

Callers 3

Calls 2

propagateChildFlagsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…