(ast, options)
| 382 | } |
| 383 | |
| 384 | async function formatAst(ast, options) { |
| 385 | options = await normalizeFormatOptions(options); |
| 386 | const doc = await printAstToDoc(ast, options); |
| 387 | return printDocToStringWithoutNormalizeOptions(doc, options); |
| 388 | } |
| 389 | |
| 390 | // Doesn't handle shebang for now |
| 391 | async function formatDoc(doc, options) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…