summaryrefslogtreecommitdiff
path: root/tests/comment-test.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <corechg@gmail.com>2020-09-20 18:18:26 -0400
committerKyle Gunger <corechg@gmail.com>2020-09-20 18:18:26 -0400
commit4adc90d9a8e48a5c1841874cae0cb30c3deee6e1 (patch)
tree4025660d2f9cf825a3b6bf080c590f02405657bf /tests/comment-test.tnsl
parent99a037c68522a9ff74449a6aa41c546d85d1bc15 (diff)
Basic updates
- Move preprocessor to it's own file - Begin working on new delimiters - Begin working on blocks in the tree
Diffstat (limited to 'tests/comment-test.tnsl')
-rw-r--r--tests/comment-test.tnsl16
1 files changed, 12 insertions, 4 deletions
diff --git a/tests/comment-test.tnsl b/tests/comment-test.tnsl
index fe07b45..cdd33be 100644
--- a/tests/comment-test.tnsl
+++ b/tests/comment-test.tnsl
@@ -11,12 +11,20 @@ a/#
Ok, so this should give no output either
#/
-#;
+# ;
#a
# /;
-;#
+; # stuff
a#
/;#
-#;/
-;/ \ No newline at end of file
+# ;/
+;/
+
+# More intricate block changing checks
+
+/# Comment start
+Comment end #; if (thing)
+;; else if (other_thing)
+;# Comment start
+End #/ \ No newline at end of file