e9260003af4bc34f47f746c8d66c08928151b6e8
[platform/framework/web/crosswalk-tizen.git] /
1 (function(i) {
2   function h(a, b, c, d, e) {
3     this._listener = b;
4     this._isOnce = c;
5     this.context = d;
6     this._signal = a;
7     this._priority = e || 0
8   }
9   i.h = h;
10 }(this));
11
12
13 // issue #191
14 var data = {
15   items: (function() {
16     return [1, 2, 3, 4];
17   }()),
18   foo: true
19 };
20
21 // issue #223
22 (function() {
23   var x = 1;
24   foo(bar(), baz());
25 }());
26
27 // issue #250
28 (function($) {
29   x;
30 }(jQuery));
31
32 ;!function(x) {
33   console.log(x)
34 }('bar')