aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlavian Kaufmann <flavian@flaviankaufmann.ch>2025-05-25 15:59:56 +0200
committerFlavian Kaufmann <flavian@flaviankaufmann.ch>2025-05-25 15:59:56 +0200
commit7ce8a269175d8c5a488318c8db121cf14edbbdb7 (patch)
tree200b58496350a1fdd261be4a3b0005095c7d8666
parent330e46236b421ffb8fe263caf91196f4cd1114c5 (diff)
downloadimp-7ce8a269175d8c5a488318c8db121cf14edbbdb7.tar.gz
imp-7ce8a269175d8c5a488318c8db121cf14edbbdb7.zip
[feature] omit SEQ when printing AST
-rw-r--r--src/driver.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/driver.c b/src/driver.c
index 5f6037d..a522938 100644
--- a/src/driver.c
+++ b/src/driver.c
@@ -67,7 +67,6 @@ static void ast_print (IMP_ASTNode *node, int depth) {
}
case IMP_AST_NT_SEQ: {
ast_print(node->data.seq.fst_stmt, depth);
- printf("%*sSEQ\n", indent, "");
ast_print(node->data.seq.snd_stmt, depth);
break;
}