summaryrefslogtreecommitdiff
path: root/src/tree.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-12-15 18:03:12 -0500
committerAdrian Thurston <thurston@complang.org>2015-12-15 18:03:12 -0500
commit5a80d5bf17dd9b176c034bae4d708710f6305419 (patch)
tree17856dc287703179e7f91b8a112c31eae5d5abbb /src/tree.h
parent9bfd3f5510bdf3da7c4084a046cbba5ba7d673fe (diff)
downloadcolm-5a80d5bf17dd9b176c034bae4d708710f6305419.tar.gz
added the $$ operator, which converts tree-to-str with attrs
Diffstat (limited to 'src/tree.h')
-rw-r--r--src/tree.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tree.h b/src/tree.h
index 79d505a3..ef714175 100644
--- a/src/tree.h
+++ b/src/tree.h
@@ -308,6 +308,9 @@ tree_t *tree_trim( struct colm_program *prg, tree_t **sp, tree_t *tree );
void print_tree_collect( struct colm_program *prg, tree_t **sp,
StrCollect *collect, tree_t *tree, int trim );
+void print_tree_collect_a( struct colm_program *prg, tree_t **sp,
+ StrCollect *collect, tree_t *tree, int trim );
+
void print_tree_file( struct colm_program *prg, tree_t **sp,
struct stream_impl *impl, tree_t *tree, int trim );
void print_xml_stdout( struct colm_program *prg, tree_t **sp,