blob: 306c1e450d60903e9a2f99b36a6949ddcbdb0968 (
plain) (
blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// Test while expressions.
---
// Should output `2 4 6 8 10`.
#let i = 0
#while i < 10 [
{ i += 2 }
#i
]
// Should output `Hi`.
#let iter = true
#while iter {
iter = false
"Hi."
}
#while false {
dont-care
}
---
// Value of while loops.
// Ref: false
#test(while false {}, none)
#let i = 0
#test(type(while i < 1 [{ i += 1 }]), "template")
---
// Ref: false
// Condition must be boolean.
// Error: 8-14 expected boolean, found template
#while [nope] [nope]
// Make sure that we don't complain twice.
// Error: 8-15 unknown variable
#while nothing {}
// Errors taint everything.
#let i = 0
#test(error, while i < 10 {
i += 1
if i < 5 [nope] else { error }
})
#test(i, 10)
---
// Error: 7 expected expression
#while
// Error: 7 expected expression
{while}
// Error: 9 expected body
#while x
// Should output `x`.
// Error: 7 expected expression
#while
x {}
// Should output `something`.
// Error: 9 expected body
#while x something
|