| Index: Source/bindings/scripts/idl_types.py
|
| diff --git a/Source/bindings/scripts/idl_types.py b/Source/bindings/scripts/idl_types.py
|
| index 9de8efc16d3feaba5c400b431b04c6217290b98a..7fbb36473aa8f055be72d816b343c25ed62ba9f1 100644
|
| --- a/Source/bindings/scripts/idl_types.py
|
| +++ b/Source/bindings/scripts/idl_types.py
|
| @@ -332,6 +332,10 @@ class IdlUnionType(object):
|
| return True
|
|
|
| @property
|
| + def may_raise_exception_on_conversion(self):
|
| + return False
|
| +
|
| + @property
|
| def name(self):
|
| return 'Or'.join(member_type.name for member_type in self.member_types)
|
|
|
|
|