about summary refs log tree commit diff
path: root/boot/tests/lower/range_for_loop.cskt
blob: 64ffe0b95e2f553eaa6d95d659367951dc88209d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
a range for-each is rewritten into a c-style loop.

<<<

main = fun () {
    for i int = 0..10 {
        var x int = i
    }
}

>>>

(unit
	(types
		(type 0 int primitive)
		(type 1 uint primitive)
		(type 2 bool primitive)
		(type 3 string primitive)
		(type 4 float primitive)
		(type 5 byte primitive)
		(type 6 ascii primitive)
		(type 7 void primitive))
	(functions
		(function 0 main main (returns (ref void)) (block
			(block
				(declaration i (ref int) (initializer (expr 0)))
				(loop (condition (expr (binary < (expr (name i)) (expr 10)))) (block
					(declaration x (ref int) (initializer (expr (name i))))
					(assign (expr (name i)) (expr (binary + (expr (name i)) (expr 1))))
				))
			)
		)))
	(emission_order 0 1 2 3 4 5 6 7))