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

Function hasBindableName

test/fixtures/snapshot/typescript.js:57704–57706  ·  view source on GitHub ↗

* Indicates whether a declaration has an early-bound name or a dynamic name that can be late-bound.

(node)

Source from the content-addressed store, hash-verified

57702 * Indicates whether a declaration has an early-bound name or a dynamic name that can be late-bound.
57703 */
57704 function hasBindableName(node) {
57705 return !ts.hasDynamicName(node) || hasLateBindableName(node);
57706 }
57707 /**
57708 * Indicates whether a declaration name is a dynamic name that cannot be late-bound.
57709 */

Calls 1

hasLateBindableNameFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…