* Indicates whether a declaration has an early-bound name or a dynamic name that can be late-bound.
(node)
| 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 | */ |
no test coverage detected
searching dependent graphs…