(ast: AST)
| 273 | const sharedUnparser = new Unparser(); |
| 274 | |
| 275 | export function unparse(ast: AST): string { |
| 276 | return sharedUnparser.unparse(ast); |
| 277 | } |
| 278 | |
| 279 | // [unparsed AST, original source code of AST] |
| 280 | type UnparsedWithSpan = [string, string]; |
no test coverage detected
searching dependent graphs…