1 // This code defines functions for transforming ASTs back into Tomo source text
8 #include "../stdlib/datatypes.h"
10 Text_t format_file(const char *path);
11 Text_t format_code(ast_t *ast, Table_t comments, Text_t indentation);
12 Text_t format_namespace(ast_t *namespace, Table_t comments, Text_t indent);
13 OptionalText_t format_inline_code(ast_t *ast, Table_t comments);