| Index: tools/foozzie/v8_mock.js
|
| diff --git a/tools/foozzie/v8_mock.js b/tools/foozzie/v8_mock.js
|
| index 4bd3ce54025988eb647ceb60a135453e3f1f92e3..647730af1ea2f97564ee01b45691ebacec512067 100644
|
| --- a/tools/foozzie/v8_mock.js
|
| +++ b/tools/foozzie/v8_mock.js
|
| @@ -55,7 +55,8 @@ var __PrettyPrint = function __PrettyPrint(msg) { print(msg); };
|
| Error.prepareStackTrace = function (error, structuredStackTrace) {
|
| return "";
|
| };
|
| -Object.freeze(Error)
|
| +Object.defineProperty(
|
| + Error, 'prepareStackTrace', { configurable: false, writable: false });
|
|
|
| // Mock buffer access in float typed arrays because of varying NaN patterns.
|
| // Note, for now we just use noop forwarding proxies, because they already
|
|
|