(path: any)
| 156 | |
| 157 | // Print the entire AST generically. |
| 158 | function printGenerically(path: any) { |
| 159 | return printComments(path, (path: any) => |
| 160 | genericPrint( |
| 161 | path, |
| 162 | config, |
| 163 | { |
| 164 | includeComments: true, |
| 165 | avoidRootParens: false, |
| 166 | }, |
| 167 | printGenerically, |
| 168 | ), |
| 169 | ); |
| 170 | } |
| 171 | |
| 172 | const path = FastPath.from(ast); |
| 173 | const oldReuseWhitespace = config.reuseWhitespace; |
no test coverage detected
searching dependent graphs…