(name)
| 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 | */ |
no outgoing calls
no test coverage detected