| Index: Source/bindings/scripts/v8_methods.py
|
| diff --git a/Source/bindings/scripts/v8_methods.py b/Source/bindings/scripts/v8_methods.py
|
| index 8541c9bd2210c5a75bc94404a26a66e7d52bd322..e65bd786e475a91e5bd56af90a80fcdaf115747d 100644
|
| --- a/Source/bindings/scripts/v8_methods.py
|
| +++ b/Source/bindings/scripts/v8_methods.py
|
| @@ -290,6 +290,8 @@ def cpp_value(interface, method, number_of_arguments):
|
| idl_type = argument.idl_type
|
| if idl_type.name == 'EventListener':
|
| return argument.name
|
| + if idl_type.is_dictionary:
|
| + return '*%s' % argument.name
|
| if (idl_type.is_callback_interface or
|
| idl_type.name in ['NodeFilter', 'NodeFilterOrNull',
|
| 'XPathNSResolver', 'XPathNSResolverOrNull']):
|
|
|