aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-06-25 10:46:09 +0200
committerBad Diode <bd@badd10de.dev>2024-06-25 10:46:09 +0200
commitf39149eaac8a7e6400aca1edea4bf47e3941a3fc (patch)
treeac51b3d0b7158c836129589c6b86ca9d072f7425 /tests
parentbcc40682a0d699e8c36df62975c12cdea491d167 (diff)
downloadbdl-f39149eaac8a7e6400aca1edea4bf47e3941a3fc.tar.gz
bdl-f39149eaac8a7e6400aca1edea4bf47e3941a3fc.zip
Remove parenthesis requirement from match, while, if
Diffstat (limited to 'tests')
-rw-r--r--tests/conditionals.bad14
-rw-r--r--tests/loops.bad8
2 files changed, 11 insertions, 11 deletions
diff --git a/tests/conditionals.bad b/tests/conditionals.bad
index 50d0cfc..772bd07 100644
--- a/tests/conditionals.bad
+++ b/tests/conditionals.bad
@@ -1,5 +1,5 @@
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
@@ -8,19 +8,19 @@ let a = if (2 + 2 >= 4) 42
8let b = if (0xff == 0x32) "hello" else "world" 8let b = if (0xff == 0x32) "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"
@@ -42,7 +42,7 @@ let f:flags = flags.node_add
42; case node_add = "subbing something..." 42; case node_add = "subbing something..."
43; else = "default case" 43; else = "default case"
44; } 44; }
45match (a) { 45match a {
46 case flags.node_add = "adding something..." 46 case flags.node_add = "adding something..."
47 case flags.node_add = "subbing something..." 47 case flags.node_add = "subbing something..."
48 else = "default case" 48 else = "default case"
diff --git a/tests/loops.bad b/tests/loops.bad
index d42716f..a068ed0 100644
--- a/tests/loops.bad
+++ b/tests/loops.bad
@@ -1,18 +1,18 @@
1; The most basic loop is the while loop. 1; The most basic loop is the while loop.
2while (true) "heelo" 2while true "heelo"
3 3
4while (1 + 2 == 3) { 4while 1 + 2 == 3 {
5 "hello" 5 "hello"
6} 6}
7 7
8let a = true 8let a = true
9while (a) { 9while a {
10 "hello" 10 "hello"
11} 11}
12 12
13; We could use some sugar for this. 13; We could use some sugar for this.
14let i = 0 14let i = 0
15while (i < 10) { 15while i < 10 {
16 "hello" 16 "hello"
17 ; --i 17 ; --i
18} 18}