| Index: lib/dom/scripts/idlnode.py
|
| diff --git a/lib/dom/scripts/idlnode.py b/lib/dom/scripts/idlnode.py
|
| index 921bf56be4cbd6acce4e3816ad1b0edf2ff5e95c..cc4108ca73fcc9a17e9b908a5eb49b16ce9d0bcf 100755
|
| --- a/lib/dom/scripts/idlnode.py
|
| +++ b/lib/dom/scripts/idlnode.py
|
| @@ -463,6 +463,9 @@ class IDLArgument(IDLNode):
|
| self.is_optional = self._has(ast, 'Optional') \
|
| or ('Optional' in self.ext_attrs)
|
|
|
| + def __repr__(self):
|
| + return '<IDLArgument(type = %s, id = %s)>' % (self.type, self.id)
|
| +
|
|
|
| class IDLImplementsStatement(IDLNode):
|
| """IDLNode specialization for 'X implements Y' declarations."""
|
|
|