| Index: lib/compiler/implementation/lib/native_helper.dart
|
| diff --git a/lib/compiler/implementation/lib/native_helper.dart b/lib/compiler/implementation/lib/native_helper.dart
|
| index 6b32e78120bfd8604871344a158893053ede3c60..e5247a80005c453522960d0556d99d9d81de3cb4 100644
|
| --- a/lib/compiler/implementation/lib/native_helper.dart
|
| +++ b/lib/compiler/implementation/lib/native_helper.dart
|
| @@ -100,7 +100,7 @@ String toStringForNativeObject(var obj) {
|
| */
|
| void defineProperty(var obj, String property, var value) {
|
| JS('void', """Object.defineProperty(#, #,
|
| - {value: #, enumerable: false, writable: false, configurable: true});""",
|
| + {value: #, enumerable: false, writable: true, configurable: true});""",
|
| obj,
|
| property,
|
| value);
|
|
|