| Index: Source/bindings/scripts/unstable/v8_attributes.py
|
| diff --git a/Source/bindings/scripts/unstable/v8_attributes.py b/Source/bindings/scripts/unstable/v8_attributes.py
|
| index a44778a6edd02d7d0d0ead76c891a72aa0e25e86..536ac860b5e985ec48163a8a25fb21d5115c4226 100644
|
| --- a/Source/bindings/scripts/unstable/v8_attributes.py
|
| +++ b/Source/bindings/scripts/unstable/v8_attributes.py
|
| @@ -305,9 +305,7 @@ def access_control_list(attribute):
|
| access_control = []
|
| if 'DoNotCheckSecurity' in extended_attributes:
|
| do_not_check_security = extended_attributes['DoNotCheckSecurity']
|
| - if do_not_check_security == 'Getter':
|
| - access_control.append('v8::ALL_CAN_READ')
|
| - elif do_not_check_security == 'Setter':
|
| + if do_not_check_security == 'Setter':
|
| access_control.append('v8::ALL_CAN_WRITE')
|
| else:
|
| access_control.append('v8::ALL_CAN_READ')
|
|
|