* Indicates whether a declaration has a late-bindable dynamic name.
(node)
| 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 | */ |
no test coverage detected