(node *Node)
| 4128 | } |
| 4129 | |
| 4130 | func GetContainingFunction(node *Node) *Node { |
| 4131 | return FindAncestor(node.Parent, IsFunctionLike) |
| 4132 | } |
| 4133 | |
| 4134 | func ImportFromModuleSpecifier(node *Node) *Node { |
| 4135 | if result := TryGetImportFromModuleSpecifier(node); result != nil { |
no test coverage detected