* @param {string} name * @returns {Binding | null}
(name)
| 746 | * @returns {Binding | null} |
| 747 | */ |
| 748 | get(name) { |
| 749 | return this.declarations.get(name) ?? this.parent?.get(name) ?? null; |
| 750 | } |
| 751 | |
| 752 | /** |
| 753 | * @param {VariableDeclarator | AST.LetDirective} node |
no outgoing calls
no test coverage detected