* @param {VariableDeclarator | AST.LetDirective} node * @returns {Binding[]}
(node)
| 754 | * @returns {Binding[]} |
| 755 | */ |
| 756 | get_bindings(node) { |
| 757 | const bindings = this.declarators.get(node); |
| 758 | if (!bindings) { |
| 759 | throw new Error('No binding found for declarator'); |
| 760 | } |
| 761 | return bindings; |
| 762 | } |
| 763 | |
| 764 | /** |
| 765 | * @param {string} name |
no test coverage detected