Chromium Code Reviews| Index: tools/dom/scripts/idlnode.py |
| diff --git a/tools/dom/scripts/idlnode.py b/tools/dom/scripts/idlnode.py |
| index 9957b359c198e98c6a25c3ed5b7e5bc321dbe3cd..0deda71ae86c2a7f9643ff462aa9ffe091c5e1ce 100755 |
| --- a/tools/dom/scripts/idlnode.py |
| +++ b/tools/dom/scripts/idlnode.py |
| @@ -6,7 +6,6 @@ |
| import os |
| import sys |
| - |
| class IDLNode(object): |
|
siva
2013/09/10 00:22:43
This file seems to have only white space changes m
|
| """Base class for all IDL elements. |
| IDLNode may contain various child nodes, and have properties. Examples |
| @@ -17,7 +16,7 @@ class IDLNode(object): |
| def __init__(self, ast): |
| """Initializes an IDLNode from a PegParser AST output.""" |
| self.id = self._find_first(ast, 'Id') if ast is not None else None |
| - |
| + |
| def __repr__(self): |
| """Generates string of the form <class id extra extra ... 0x12345678>.""" |
| extras = self._extra_repr() |