| Index: sdk/lib/html/scripts/idlnode.py
|
| diff --git a/sdk/lib/html/scripts/idlnode.py b/sdk/lib/html/scripts/idlnode.py
|
| index 3ce84d0b9f102285397a772c2ee834ceba0b0f0d..7c488a5ef8ef2a419f1a5f5f17ee266f08744583 100755
|
| --- a/sdk/lib/html/scripts/idlnode.py
|
| +++ b/sdk/lib/html/scripts/idlnode.py
|
| @@ -3,6 +3,7 @@
|
| # for details. All rights reserved. Use of this source code is governed by a
|
| # BSD-style license that can be found in the LICENSE file.
|
|
|
| +import os
|
| import sys
|
|
|
|
|
| @@ -386,7 +387,7 @@ class IDLInterface(IDLNode):
|
| javascript_interface_name = self.ext_attrs.get('InterfaceName', self.id)
|
| self.javascript_binding_name = javascript_interface_name
|
| self.doc_js_name = javascript_interface_name
|
| - self.operations = self._convert_all(ast, 'Operation',
|
| + self.operations = self._convert_all(ast, 'Operation',
|
| lambda ast: IDLOperation(ast, self.doc_js_name))
|
| self.attributes = self._convert_all(ast, 'Attribute',
|
| lambda ast: IDLAttribute(ast, self.doc_js_name))
|
|
|