diff options
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r-- | src/compiler/ast-tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h index d60088d..68b8ec6 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -259,9 +259,11 @@ typedef struct AstTreeBuiltin { AstTreeBuiltinToken token; } AstTreeBuiltin; +#ifdef PRINT_COMPILE_TREE void astTreePrint(const AstTree *tree, int indent); void astTreeVariablePrint(const AstTreeVariable *variable, int indent); void astTreeRootPrint(const AstTreeRoot *root); +#endif void astTreeDestroy(AstTree tree); void astTreeVariableDestroy(AstTreeVariable variable); |