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

Function createBaseBindingLikeDeclaration

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

Source from the content-addressed store, hash-verified

22867 return node;
22868 }
22869 function createBaseBindingLikeDeclaration(kind, decorators, modifiers, name, initializer) {
22870 var node = createBaseNamedDeclaration(kind, decorators, modifiers, name);
22871 node.initializer = initializer;
22872 node.transformFlags |= propagateChildFlags(node.initializer);
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;

Callers 2

createBindingElementFunction · 0.85

Calls 2

propagateChildFlagsFunction · 0.85

Tested by

no test coverage detected