2023-11-09 18:47:11 +01:00

8 lines
170 B
TypeScript

import { ASTNode } from './ast';
/**
* Converts an AST into a string, using one set of reasonable
* formatting rules.
*/
export function print(ast: ASTNode): string;