Sign in
eclipse
/
gerrit
/
dltk
/
org.eclipse.dltk.javascript
/
4cd6af24463c51ab0a72aa1a0afb0f3bb172ac2c
/
.
/
tests
/
org.eclipse.dltk.javascript.formatter.tests
/
scripts.parser
/
while.js
blob: 662d33e457739441eb02687e209ebda88e031a90 [
file
] [
log
] [
blame
]
function
aaa
()
{
n
=
0
;
x
=
0
;
while
(
n
<
3
)
{
n
++;
x
+=
n
;
}
while
(
true
)
{
if
(
s
||
false
)
continue
;
else
break
;
}
while
(
true
);
}