| Index: Source/bindings/scripts/v8_attributes.py
|
| diff --git a/Source/bindings/scripts/v8_attributes.py b/Source/bindings/scripts/v8_attributes.py
|
| index 3ba0ca64dc93ae82175d269a008882e96f1d7109..56151402f89861849151b1baaeed1e8d89bd6f7c 100644
|
| --- a/Source/bindings/scripts/v8_attributes.py
|
| +++ b/Source/bindings/scripts/v8_attributes.py
|
| @@ -82,12 +82,14 @@ def generate_attribute(interface, attribute):
|
| 'access_control_list': access_control_list(attribute),
|
| 'activity_logging_world_list_for_getter': v8_utilities.activity_logging_world_list(attribute, 'Getter'), # [ActivityLogging]
|
| 'activity_logging_world_list_for_setter': v8_utilities.activity_logging_world_list(attribute, 'Setter'), # [ActivityLogging]
|
| + 'activity_logging_include_old_value_for_setter': v8_utilities.activity_old_value_for_setter(attribute), # [ActivityLogging]
|
| 'cached_attribute_validation_method': extended_attributes.get('CachedAttribute'),
|
| 'conditional_string': v8_utilities.conditional_string(attribute),
|
| 'constructor_type': idl_type.constructor_type_name
|
| if is_constructor_attribute(attribute) else None,
|
| 'cpp_name': cpp_name(attribute),
|
| 'cpp_type': idl_type.cpp_type,
|
| + 'cpp_value_to_v8_value': idl_type.cpp_value_to_v8_value,
|
| 'deprecate_as': v8_utilities.deprecate_as(attribute), # [DeprecateAs]
|
| 'enum_validation_expression': idl_type.enum_validation_expression,
|
| 'has_custom_getter': has_custom_getter,
|
|
|