projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fd53e8c2e3f83974337861fd3631dfdd3edad08f
[platform/framework/web/crosswalk-tizen.git]
/
1
(function(i){ function h(a,b,c,d,e){this._listener=b;this._isOnce=c;this.context=d;this._signal=a;this._priority=e||0}i.h=h;}(this));
2
3
4
// issue #191
5
var data = {
6
items: (function() {
7
return [1, 2, 3, 4];
8
}()),
9
foo: true
10
};
11
12
// issue #223
13
( function() {
14
var x = 1;
15
foo(bar(), baz());
16
}() );
17
18
// issue #250
19
( function( $ ) {
20
x;
21
}( jQuery ) );
22
23
;!function( x ) {
24
console.log( x )
25
}( 'bar' )