| Index: Source/bindings/scripts/v8_types.py
|
| diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py
|
| index d4e91efd8e3aaf5d0c875e1b3c556e4535b2477e..8da9e1cc81f31b883f22cf10c1c5681bea56516f 100644
|
| --- a/Source/bindings/scripts/v8_types.py
|
| +++ b/Source/bindings/scripts/v8_types.py
|
| @@ -485,6 +485,7 @@ def v8_conversion_is_trivial(idl_type):
|
| # The conversion is a simple expression that returns the converted value and
|
| # cannot raise an exception.
|
| return (idl_type.base_type == 'boolean' or
|
| + idl_type.base_type == 'Dictionary' or
|
| idl_type.is_wrapper_type)
|
|
|
| IdlType.v8_conversion_is_trivial = property(v8_conversion_is_trivial)
|
|
|