projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
629b68b924a50bd7de02e0cf7055d0cb5541a438
[platform/framework/web/crosswalk-tizen.git]
/
1
if(true){doStuff()}
2
3
if( foo ||bar ){ if (bar === 'bar'){
4
// nested
5
log('nested if'); } else { log('nested else')
6
} }
7
else if (baz==null)
8
{
9
// else if
10
log('elseif');
11
}else{
12
// else
13
log('else');
14
// should keep the 2 empty lines
15
16
17
}
18
19
if( singleLine )singleLine();
20
21
22
// it's a trap!
23
if (asi && noBraces)
24
dolor()
25
else
26
amet();
27