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

Function isLateBoundName

test/fixtures/snapshot/typescript.js:57689–57693  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

57687 && isTypeUsableAsPropertyName(ts.isComputedPropertyName(node) ? checkComputedPropertyName(node) : checkExpressionCached(expr));
57688 }
57689 function isLateBoundName(name) {
57690 return name.charCodeAt(0) === 95 /* CharacterCodes._ */ &&
57691 name.charCodeAt(1) === 95 /* CharacterCodes._ */ &&
57692 name.charCodeAt(2) === 64 /* CharacterCodes.at */;
57693 }
57694 /**
57695 * Indicates whether a declaration has a late-bindable dynamic name.
57696 */

Calls

no outgoing calls

Tested by

no test coverage detected