98713096b24dee9f58fb7c2a9512c4a5eeee5889
[platform/framework/web/crosswalk-tizen.git] /
1 ;( ++n < 10 );
2 ;( a == b );
3 ( c === d );
4 x = ( value / 10 );
5 if (r * ( x + 1 ) + ( y + 2 )) {
6   y = ( "123" + "3456" );
7   // parseInt() is the "catch" on this case
8   z = ( ( q + w ) / ( parseInt('abc', 16) * ( 7 ) ) )
9 }
10
11
12 // edge cases
13 // ==========
14
15 // not a bynary expression or a ExpressionStatement
16 // VariableDeclaration > VariableDeclarator > [Identifier + Literal]
17 var foo = ( 123 );
18
19
20 // SequenceExpression
21 madness = ( weird, stuff ), ( 45, 56 )
22
23 ;( bar() );
24 (function() {})();
25 (function() {}());
26
27 function returnTest() {
28   return ( x > 1 );
29 }
30
31 function returnTest2() {
32   return ( y + 1 );
33 }
34
35 function returnTest3(amount) {
36   return amount + " result" + ( amount > 1 ? "s" : "" );
37 }
38
39 function returnTest4() {
40   return ( a || b < 0 ) && y();
41 }
42
43
44 fn(( 1 + 3 ) + 4);