aboutsummaryrefslogtreecommitdiff
path: root/test/tree.c
diff options
context:
space:
mode:
authorc2024-01-28 20:15:35 -0500
committerc2024-01-28 20:15:35 -0500
commit422606d8b3cc6fba74f97af46f0378fc274d60ad (patch)
tree34314628de5e3132cffc661901bd1e4c9b2aa0de /test/tree.c
parent87e0d4b3d23a7eb38f0e196eac333c318fef27ea (diff)
Fixed things.
- Fixed `parser_nxt_token()` assuming the existance of a parser's token. - Fixed block parsing.
Diffstat (limited to 'test/tree.c')
-rw-r--r--test/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tree.c b/test/tree.c
index b9ef210..567daae 100644
--- a/test/tree.c
+++ b/test/tree.c
@@ -20,8 +20,6 @@ void test_things() {
tree_t* tree_lstr_1;
tree_t* tree_tag_0;
tree_t* tree_tag_1;
- tree_t* tree_def_0;
- tree_t* tree_def_1;
tree_t* tree_carg_0;
tree_t* tree_carg_1;
tree_t* tree_call_0;
@@ -245,6 +243,8 @@ void test_things() {
ASSERT(tree_cmp(tree_block_0, tree_block_0) == 1);
ASSERT(tree_cmp(tree_block_0, tree_block_1) == 0);
+
+ /* *Definitely* not cleaning up fully here. Oh, well. */
}
int main() {