| Index: test/mjsunit/compiler/regress-stacktrace-methods.js
|
| diff --git a/test/mjsunit/compiler/regress-stacktrace-methods.js b/test/mjsunit/compiler/regress-stacktrace-methods.js
|
| index 4d2872793d92108f2b6e7ddc54a665716bce6da2..e21d0584c76229838c270a4e49e1231d5012dfcf 100644
|
| --- a/test/mjsunit/compiler/regress-stacktrace-methods.js
|
| +++ b/test/mjsunit/compiler/regress-stacktrace-methods.js
|
| @@ -31,11 +31,11 @@
|
| function Hest() {}
|
| function Svin() {}
|
|
|
| -Svin.prototype.two = function() { /* xxxxxxx */ o.three(); }
|
| +Svin.prototype.two = function() { /* xxxxxxx */ o.three(); };
|
|
|
| -Hest.prototype.one = function(x) { x.two(); }
|
| +Hest.prototype.one = function(x) { x.two(); };
|
|
|
| -Hest.prototype.three = function() { if (v == 42) throw new Error("urg"); }
|
| +Hest.prototype.three = function() { if (v == 42) throw new Error("urg"); };
|
|
|
| var o = new Hest();
|
| var s = new Svin();
|
|
|