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 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 } | 116 } |
117 var a = function() | 117 var a = function() |
118 { | 118 { |
119 var _generatorResult10 = []; | 119 var _generatorResult10 = []; |
120 for (var i = 0; i < 10; i++) | 120 for (var i = 0; i < 10; i++) |
121 { | 121 { |
122 _generatorResult10.push(i); | 122 _generatorResult10.push(i); |
123 } | 123 } |
124 return _generatorResult10; | 124 return _generatorResult10; |
125 }; | 125 }; |
| 126 var x = function(y) |
| 127 { |
| 128 return y + 1; |
| 129 }; |
| 130 x = function(y) |
| 131 { |
| 132 return y + 1; |
| 133 }; |
| 134 x = function(a, b) |
| 135 { |
| 136 return this[a] + b; |
| 137 }.bind(this); |
| 138 x = function(a, b) |
| 139 { |
| 140 return function() |
| 141 { |
| 142 return 1; |
| 143 }; |
| 144 }.bind(this); |
126 return exports; | 145 return exports; |
127 })(); | 146 })(); |
OLD | NEW |