blob: 26e0b3f528f532ecc1cba0de3e6e4b640e5e0a69 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
description(
'This test checks break and continue behaviour in the presence of multiple labels.'
);
function test1()
{
var s = "";
a:
b:
for (var i = 1; i < 10; i++) {
if (i == 4)
continue a;
s += i;
}
return s;
}
shouldBe("test1()", "'12356789'");
function test2()
{
var s = "";
a:
b:
for (var i = 1; i < 10; i++) {
if (i == 4)
break a;
s += i;
}
return s;
}
shouldBe("test2()", "'123'");
function test3()
{
var i;
for (i = 1; i < 10; i++) {
try {
continue;
} finally {
innerLoop:
while (1) {
break innerLoop;
}
}
}
return i;
}
shouldBe("test3()", "10");
function test4()
{
var i = 0;
a:
i++;
while (1) {
break;
}
return i;
}
shouldBe("test4()", "1");
function test5()
{
var i = 0;
switch (1) {
default:
while (1) {
break;
}
i++;
}
return i;
}
shouldBe("test5()", "1");
|