| Index: src/proxy.js
|
| diff --git a/src/proxy.js b/src/proxy.js
|
| index 9f02705e37acdca5808a4c3f08d23be6ad335d2c..b8e1dc1be0c46da0f2eda1854e0e0d53d92b4eb0 100644
|
| --- a/src/proxy.js
|
| +++ b/src/proxy.js
|
| @@ -161,8 +161,8 @@ function DerivedEnumerateTrap() {
|
| var desc = this.getPropertyDescriptor(TO_STRING_INLINE(name))
|
| if (!IS_UNDEFINED(desc)) {
|
| if (!desc.configurable) {
|
| - throw MakeTypeError("proxy_prop_not_configurable",
|
| - [this, "getPropertyDescriptor", name])
|
| + throw MakeTypeError(kProxyPropNotConfigurable,
|
| + this, name, "getPropertyDescriptor")
|
| }
|
| if (desc.enumerable) enumerableNames[count++] = names[i]
|
| }
|
|
|