Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 9e20a12cd2b2ba2ac34e94364723b04094f4251f..bdc484dfd4b3746a566861cb1666c73248168f2f 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -1847,7 +1847,8 @@ class JSReceiver: public HeapObject { |
// ES6 9.1.6.2 |
MUST_USE_RESULT static Maybe<bool> IsCompatiblePropertyDescriptor( |
Isolate* isolate, bool extensible, PropertyDescriptor* desc, |
- PropertyDescriptor* current, Handle<Name> property_name); |
+ PropertyDescriptor* current, Handle<Name> property_name, |
+ ShouldThrow should_throw); |
// ES6 9.1.6.3 |
// |it| can be NULL in cases where the ES spec passes |undefined| as the |
// receiver. Exactly one of |it| and |property_name| must be provided. |