| Index: Source/bindings/scripts/v8_attributes.py
|
| diff --git a/Source/bindings/scripts/v8_attributes.py b/Source/bindings/scripts/v8_attributes.py
|
| index 485991d8860483eee00f66dbb1d3a7236d874f38..84f617e50f72eccd3c2bd5dcf335cb1ea0afd682 100644
|
| --- a/Source/bindings/scripts/v8_attributes.py
|
| +++ b/Source/bindings/scripts/v8_attributes.py
|
| @@ -454,6 +454,8 @@ def access_control_list(attribute):
|
| access_control.append('v8::ALL_CAN_WRITE')
|
| if 'Unforgeable' in extended_attributes:
|
| access_control.append('v8::PROHIBITS_OVERWRITING')
|
| + if 'Unintercept' in extended_attributes:
|
| + access_control.append('v8::PROHIBITS_INTERCEPT | v8::DEFAULT')
|
| return access_control or ['v8::DEFAULT']
|
|
|
|
|
|
|