| Index: Source/bindings/scripts/v8_methods.py
|
| diff --git a/Source/bindings/scripts/v8_methods.py b/Source/bindings/scripts/v8_methods.py
|
| index d6b98f2febdc4c508507f3ef1475529c76830a0d..d8abaef6edf2c81772f976ca3bef852d914ed8da 100644
|
| --- a/Source/bindings/scripts/v8_methods.py
|
| +++ b/Source/bindings/scripts/v8_methods.py
|
| @@ -249,8 +249,8 @@ def v8_value_to_local_cpp_value(argument, index):
|
| name = argument.name
|
| if argument.is_variadic:
|
| vector_type = v8_types.cpp_ptr_type('Vector', 'HeapVector', idl_type.gc_type)
|
| - return 'V8TRYCATCH_VOID({vector_type}<{cpp_type}>, {name}, toNativeArguments<{cpp_type}>(info, {index}))'.format(
|
| - cpp_type=idl_type.cpp_type, name=name, index=index, vector_type=vector_type)
|
| + return 'TONATIVE_VOID({vector_type}<{cpp_type}>, {name}, toNativeArguments<{cpp_type}>(info, {index}))'.format(
|
| + cpp_type=idl_type.cpp_type, name=name, index=index, vector_type=vector_type)
|
| # [Default=NullString]
|
| if (argument.is_optional and idl_type.name == 'String' and
|
| extended_attributes.get('Default') == 'NullString'):
|
|
|