Index: Source/bindings/scripts/v8_types.py |
diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py |
index b51c7325434935c210f401479a9fbb55b88e11cf..9417bf253ce1b079e00b4b2e70fe5bbc01eff4c8 100644 |
--- a/Source/bindings/scripts/v8_types.py |
+++ b/Source/bindings/scripts/v8_types.py |
@@ -74,6 +74,7 @@ TYPED_ARRAYS = { |
IdlType.is_typed_array_type = property( |
lambda self: self.base_type in TYPED_ARRAYS) |
+IdlUnionType.is_typed_array_type = False |
IdlType.is_wrapper_type = property( |
@@ -191,7 +192,7 @@ def cpp_type(idl_type, extended_attributes=None, raw_type=False, used_as_argumen |
return base_idl_type + '*' |
-def cpp_type_union(idl_type, extended_attributes=None): |
+def cpp_type_union(idl_type, extended_attributes=None, raw_type=False): |
return (member_type.cpp_type for member_type in idl_type.member_types) |