projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
d98efe665fe33701ccc791ce7b7aea4b777413bd
[platform/framework/web/crosswalk-tizen.git]
/
1
do {
2
console.log(i++)
3
} while (i < 100);
4
do {
5
i--
6
} while (i);
7
8
do n--; while (n && foo());
9
10
do n--; while (n && foo());
11
do ++i; while (amet(i));
12
13
// issue #256
14
function main() {
15
do
16
if (true) return 1;
17
while (true);
18
}
19
20
function main() {
21
do
22
if (true) return 1;
23
while (true);
24
}