(ast, options)
| 26 | ]; |
| 27 | |
| 28 | function preprocess(ast, options) { |
| 29 | for (const fn of PREPROCESS_PIPELINE) { |
| 30 | fn(ast, options); |
| 31 | } |
| 32 | |
| 33 | return ast; |
| 34 | } |
| 35 | |
| 36 | function removeIgnorableFirstLf(ast /* , options */) { |
| 37 | ast.walk((node) => { |
no test coverage detected
searching dependent graphs…