| Index: frog/corejs.dart
|
| diff --git a/frog/corejs.dart b/frog/corejs.dart
|
| index 690201b258cc8e6658458e538c8fcd50cee7e908..818566f88d60cae236bc98af802ff0dc21d604c2 100644
|
| --- a/frog/corejs.dart
|
| +++ b/frog/corejs.dart
|
| @@ -144,7 +144,7 @@ function ${name}(x, y) {
|
| function $varMethod(name, methods) {
|
| Object.prototype[name] = function() {
|
| $patchMethod(this, name, methods);
|
| - this[name].apply(this, Array.prototype.slice.call(arguments));
|
| + return this[name].apply(this, Array.prototype.slice.call(arguments));
|
| };
|
| }
|
| function $patchMethod(obj, name, methods) {
|
|
|