MCPcopy Create free account
hub / github.com/nodejs/node / hasLateBindableName

Function hasLateBindableName

test/fixtures/snapshot/typescript.js:57697–57700  ·  view source on GitHub ↗

* Indicates whether a declaration has a late-bindable dynamic name.

(node)

Source from the content-addressed store, hash-verified

57695 * Indicates whether a declaration has a late-bindable dynamic name.
57696 */
57697 function hasLateBindableName(node) {
57698 var name = ts.getNameOfDeclaration(node);
57699 return !!name && isLateBindableName(name);
57700 }
57701 /**
57702 * Indicates whether a declaration has an early-bound name or a dynamic name that can be late-bound.
57703 */

Callers 3

addPropertyToElementListFunction · 0.85
hasBindableNameFunction · 0.85

Calls 1

isLateBindableNameFunction · 0.85

Tested by

no test coverage detected