projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c430ad158ccb78ce09b6042f8d9eac8d9dd6a525
[platform/framework/web/crosswalk-tizen.git]
/
1
for (i=0; i<n;++i ) {x(); }
2
3
for(;i<n;++i){
4
x();
5
}
6
7
for ( ; ; ++i ) {
8
x();
9
}
10
11
for ( i = 0; ; ) {
12
x();
13
}
14
15
for ( ; i < n; ++i ) {
16
for ( ; j > 0; --j ) {
17
x();
18
}
19
}
20
21
for(;; ) {
22
x();
23
}
24
25
function foo() {
26
for (var c = this._bindings.length, d;c--;)
27
x += 1;
28
return -1;
29
}
30
31
for ( i = 0;i< 10;i++) foo();
32
for (i=10; i < 10; i++ )
33
bar();