diff options
Diffstat (limited to 'third_party/WebKit/Source/bindings/scripts/idl_definitions.py')
-rw-r--r-- | third_party/WebKit/Source/bindings/scripts/idl_definitions.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/WebKit/Source/bindings/scripts/idl_definitions.py b/third_party/WebKit/Source/bindings/scripts/idl_definitions.py index 51cecee..d7c2385 100644 --- a/third_party/WebKit/Source/bindings/scripts/idl_definitions.py +++ b/third_party/WebKit/Source/bindings/scripts/idl_definitions.py @@ -284,6 +284,7 @@ class IdlInterface(object): self.is_partial = node.GetProperty('Partial') or False self.idl_name = idl_name self.name = node.GetName() + self.idl_type = IdlType(self.name) children = node.GetChildren() for child in children: @@ -350,6 +351,7 @@ class IdlException(IdlInterface): self.is_partial = False self.idl_name = idl_name self.name = node.GetName() + self.idl_type = IdlType(self.name) children = node.GetChildren() for child in children: |