(s)
| 28 | |
| 29 | // (Statement) -> boolean |
| 30 | function nonEmpty(s) { |
| 31 | return s.type !== 'EmptyStatement'; |
| 32 | } |
| 33 | |
| 34 | // ([AST], [{ name: string, type: string }]) -> { string: AST, ... } |
| 35 | function split(nodes, filters) { |
nothing calls this directly
no outgoing calls
no test coverage detected