(node)
| 721 | }, AST_Lambda); |
| 722 | |
| 723 | function is_arrow(node) { |
| 724 | return node instanceof AST_Arrow || node instanceof AST_AsyncArrow; |
| 725 | } |
| 726 | |
| 727 | function is_async(node) { |
| 728 | return node instanceof AST_AsyncArrow |
no outgoing calls
no test coverage detected
searching dependent graphs…