* Indicates whether a declaration name is a dynamic name that cannot be late-bound.
(node)
| 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 | */ |
no test coverage detected