Index: Source/bindings/scripts/v8_utilities.py |
diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py |
index cc64be4f916636c7e3972f23b32bc1e31e01402a..0281e7d5964cbdd456f59b54a7d766547a4ce548 100644 |
--- a/Source/bindings/scripts/v8_utilities.py |
+++ b/Source/bindings/scripts/v8_utilities.py |
@@ -113,7 +113,7 @@ def scoped_name(interface, definition, base_name): |
partial_interface_implemented_as = definition.extended_attributes.get('PartialInterfaceImplementedAs') |
if partial_interface_implemented_as: |
return '%s::%s' % (partial_interface_implemented_as, base_name) |
- if definition.is_static: |
+ if definition.is_static or definition.name in ('Constructor', 'NamedConstructor'): |
Nils Barth (inactive)
2014/04/10 01:53:26
Could you add a linebreak here?
It's a bit more le
sof
2014/04/10 06:16:40
Done (but it was clear as could be before.)
Nils Barth (inactive)
2014/04/10 07:34:06
Thanks for accommodating my picky requests;
(Rietv
|
return '%s::%s' % (cpp_name(interface), base_name) |
return 'impl->%s' % base_name |