(type, params)
| 29 | console.log(chalk.red(`${e}`)); |
| 30 | }, |
| 31 | log(type, params) { |
| 32 | switch (type) { |
| 33 | case 'end': console.log(chalk.gray(`< ${valToString(params.val, true)}`)); break; |
| 34 | default: break; |
| 35 | } |
| 36 | } |
| 37 | }); |
| 38 | |
| 39 | async function getAst() { |
nothing calls this directly
no test coverage detected