blob: 0dc04c2b0b79966609b00a3446392c32d8daa460 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* $NetBSD: psym_while_expr.c,v 1.2 2021/11/20 16:54:17 rillig Exp $ */
/* $FreeBSD$ */
/*
* Tests for the parser symbol psym_while_expr, which represents the keyword
* 'while' followed by the controlling expression, now waiting for the
* statement of the loop body.
*/
#indent input
// TODO: add input
#indent end
#indent run-equals-input
#indent input
void
function(void)
{
while(cond){}
do{}while(cond);
if(cmd)while(cond);
{}while(cond);
}
#indent end
#indent run
void
function(void)
{
while (cond) {
}
do {
} while (cond);
if (cmd)
/* $ XXX: Where does the code say that ';' stays on the same line? */
while (cond);
{
/* $ FIXME: the '}' must be on a line of its own. */
} while (cond);
}
#indent end
|