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

Function isNonBindableDynamicName

test/fixtures/snapshot/typescript.js:57710–57712  ·  view source on GitHub ↗

* Indicates whether a declaration name is a dynamic name that cannot be late-bound.

(node)

Source from the content-addressed store, hash-verified

57708 * Indicates whether a declaration name is a dynamic name that cannot be late-bound.
57709 */
57710 function isNonBindableDynamicName(node) {
57711 return ts.isDynamicName(node) && !isLateBindableName(node);
57712 }
57713 /**
57714 * Gets the symbolic name for a member from its type.
57715 */

Callers 1

Calls 1

isLateBindableNameFunction · 0.85

Tested by

no test coverage detected