Index: autotest/test_abprewrite_module.js.expected |
=================================================================== |
--- a/autotest/test_abprewrite_module.js.expected |
+++ b/autotest/test_abprewrite_module.js.expected |
@@ -118,10 +118,29 @@ require.scopes["abprewrite_source"] = (f |
{ |
var _generatorResult10 = []; |
for (var i = 0; i < 10; i++) |
{ |
_generatorResult10.push(i); |
} |
return _generatorResult10; |
}; |
+ var x = function(y) |
+ { |
+ return y + 1; |
+ }; |
+ x = function(y) |
+ { |
+ return y + 1; |
+ }; |
+ x = function(a, b) |
+ { |
+ return this[a] + b; |
+ }.bind(this); |
+ x = function(a, b) |
+ { |
+ return function() |
+ { |
+ return 1; |
+ }; |
+ }.bind(this); |
return exports; |
})(); |