aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/conditionals.bad14
-rw-r--r--tests/loops.bad18
2 files changed, 19 insertions, 13 deletions
diff --git a/tests/conditionals.bad b/tests/conditionals.bad
index 856ac8a..e1a456e 100644
--- a/tests/conditionals.bad
+++ b/tests/conditionals.bad
@@ -1,26 +1,26 @@
1; Basic if expressions. 1; Basic if expressions.
2if true "hello" 2if (true) "hello"
3 3
4; These can produce values and the result bound to a name. 4; These can produce values and the result bound to a name.
5let a = if (2 + 2 >= 4) 42 5let a = if (2 + 2 >= 4) 42
6 6
7; We support a single if expression. 7; We support a single if expression.
8let b = if 0xff == 255 "hello" else "world" 8let b = if (0xff == 255) "hello" else "world"
9 9
10; ... but these can compound on each other 10; ... but these can compound on each other
11if 1 < 2 6 11if (1 < 2) 6
12else if 1 > 2 7 12else if (1 > 2) 7
13else 8 13else 8
14 14
15; A block is an expression, and if raise the scope level regardless if a block 15; A block is an expression, and if raise the scope level regardless if a block
16; is used or not. 16; is used or not.
17if true != false { 17if (true != false) {
18 let a = "yo" 18 let a = "yo"
19} 19}
20 20
21; Match cases should only apply to literal values, for example `case 1 + 2` 21; Match cases should only apply to literal values, for example `case 1 + 2`
22; isn't allowed. They should generally convert to a lookup table. 22; isn't allowed. They should generally convert to a lookup table.
23match a = { 23match (a) {
24 case 8 = "hello" 24 case 8 = "hello"
25 case 9 = "world" 25 case 9 = "world"
26 else = "what" 26 else = "what"
@@ -37,7 +37,7 @@ enum flags {
37let a:flags = flags.node_add 37let a:flags = flags.node_add
38 38
39; No need to qualify enum fields inside match-case. 39; No need to qualify enum fields inside match-case.
40match a = { 40match (a) {
41 case node_add = "adding something..." 41 case node_add = "adding something..."
42 case node_add = "subbing something..." 42 case node_add = "subbing something..."
43 else = "default case" 43 else = "default case"
diff --git a/tests/loops.bad b/tests/loops.bad
index 5221844..45c9712 100644
--- a/tests/loops.bad
+++ b/tests/loops.bad
@@ -1,18 +1,24 @@
1; The most basic loop is the while loop. 1; The most basic loop is the while loop.
2while abc = "heelo" 2while (abc) "heelo"
3 3
4while 1 + 2 == 3 = { 4while (1 + 2 == 3) {
5 "hello" 5 "hello"
6} 6}
7 7
8while symbol = { 8while (symbol) {
9 "hello" 9 "hello"
10} 10}
11 11
12
13; We could use some sugar for this. 12; We could use some sugar for this.
14let i = 0 13let i = 0
15while i < 10 = { 14while (i < 10) {
16 "hello" 15 "hello"
17 set i = i + 1 16 ; --i
18} 17}
18; TODO: add post/pre increment tokens
19; TODO: add functions
20; TODO: add function calls
21
22; for let i = 1, 1 < 10, i++ {
23
24; }