| Index: test/mjsunit/keyed-call-generic.js
|
| diff --git a/test/mjsunit/keyed-call-generic.js b/test/mjsunit/keyed-call-generic.js
|
| index 03146984872c44e8ad3e2040a901a7d6d7943860..2b3abbb5db3461588485395b356e974351088ff0 100644
|
| --- a/test/mjsunit/keyed-call-generic.js
|
| +++ b/test/mjsunit/keyed-call-generic.js
|
| @@ -46,8 +46,8 @@ toStringNonSymbol += 'String';
|
|
|
| function TypeOfThis() { return typeof this; }
|
|
|
| -Number.prototype.square = function() { return this * this; }
|
| -Number.prototype.power4 = function() { return this.square().square(); }
|
| +Number.prototype.square = function() { return this * this; };
|
| +Number.prototype.power4 = function() { return this.square().square(); };
|
|
|
| Number.prototype.type = TypeOfThis;
|
| String.prototype.type = TypeOfThis;
|
|
|