| Index: lib/dom/scripts/generator.py
|
| diff --git a/lib/dom/scripts/generator.py b/lib/dom/scripts/generator.py
|
| index 106219c40ca6bed55bb6e07593fdb9df44452a51..4178f9cff0163622502ee0e613107c216a86ac01 100644
|
| --- a/lib/dom/scripts/generator.py
|
| +++ b/lib/dom/scripts/generator.py
|
| @@ -275,6 +275,8 @@ def AnalyzeConstructor(interface):
|
| return map(lambda arg: _DartArg([arg], interface, True),
|
| func_value.arguments)
|
|
|
| + if 'CustomConstructor' in interface.ext_attrs:
|
| + return None
|
| if 'Constructor' in interface.ext_attrs:
|
| name = None
|
| func_value = interface.ext_attrs.get('Constructor')
|
|
|