OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 // | 18 // |
19 // This file has been generated automatically, relevant repositories: | 19 // This file has been generated automatically, relevant repositories: |
20 // * https://hg.adblockplus.org/jshydra/ | 20 // * https://hg.adblockplus.org/jshydra/ |
21 // | 21 // |
22 | 22 |
23 require.scopes["abprewrite_source"] = (function() | 23 require.scopes["abprewrite_source"] = (function() |
24 { | 24 { |
25 var exports = {}; | 25 var exports = {}; |
26 const Cl = Components.unknown; | 26 var Cl = Components.unknown; |
27 var Utils = require("utils").Utils; | 27 var Utils = require("utils").Utils; |
28 var _tempVar0 = require("filterClasses"); | 28 var _tempVar0 = require("filterClasses"); |
29 var Filter = _tempVar0.Filter; | 29 var Filter = _tempVar0.Filter; |
30 var BlockingFilter = _tempVar0.BlockingFilter; | 30 var BlockingFilter = _tempVar0.BlockingFilter; |
31 var foo; | 31 var foo; |
32 var bar = 2; | 32 var bar = 2; |
33 var bas; | 33 var bas; |
| 34 var FOO = "FOO"; |
34 var _tempVar1 = foo(); | 35 var _tempVar1 = foo(); |
35 var a = _tempVar1[0]; | 36 var a = _tempVar1[0]; |
36 var b = _tempVar1[1]; | 37 var b = _tempVar1[1]; |
37 var _tempVar2 = [1, 2]; | 38 var _tempVar2 = [1, 2]; |
38 a = _tempVar2[0]; | 39 a = _tempVar2[0]; |
39 b = _tempVar2[1]; | 40 b = _tempVar2[1]; |
40 var y = foo().x; | 41 var y = foo().x; |
41 var _tempVar3 = foo(); | 42 var _tempVar3 = foo(); |
42 var v1 = _tempVar3.k1; | 43 var v1 = _tempVar3.k1; |
43 var v2 = _tempVar3.k2; | 44 var v2 = _tempVar3.k2; |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 }.bind(this); | 149 }.bind(this); |
149 x = function(a, b) | 150 x = function(a, b) |
150 { | 151 { |
151 return function() | 152 return function() |
152 { | 153 { |
153 return 1; | 154 return 1; |
154 }; | 155 }; |
155 }.bind(this); | 156 }.bind(this); |
156 return exports; | 157 return exports; |
157 })(); | 158 })(); |
OLD | NEW |