| Index: client/dom/scripts/idlnode.py
|
| diff --git a/client/dom/scripts/idlnode.py b/client/dom/scripts/idlnode.py
|
| index a76a1ae809faed8a344b8b5cfa8031b3e01ead80..9e65fe945cc33851acb76d31e4d49f270769ce62 100755
|
| --- a/client/dom/scripts/idlnode.py
|
| +++ b/client/dom/scripts/idlnode.py
|
| @@ -345,7 +345,6 @@ class IDLInterface(IDLNode):
|
| self.operations = self._convert_all(ast, 'Operation', IDLOperation)
|
| self.attributes = self._convert_all(ast, 'Attribute', IDLAttribute)
|
| self.constants = self._convert_all(ast, 'Const', IDLConstant)
|
| - self.snippets = self._convert_all(ast, 'Snippet', IDLSnippet)
|
| self.is_supplemental = 'Supplemental' in self.ext_attrs
|
| self.is_no_interface_object = 'NoInterfaceObject' in self.ext_attrs
|
| self.is_fc_suppressed = 'Suppressed' in self.ext_attrs
|
| @@ -414,14 +413,6 @@ class IDLConstant(IDLMember):
|
| self.value = self._find_first(ast, 'ConstExpr')
|
|
|
|
|
| -class IDLSnippet(IDLMember):
|
| - """IDLNode specialization for 'snippet { data };"""
|
| - def __init__(self, ast):
|
| - IDLMember.__init__(self, ast)
|
| - self._convert_annotations(ast)
|
| - self.text = self._find_first(ast, 'SnippetText')
|
| -
|
| -
|
| class IDLArgument(IDLNode):
|
| """IDLNode specialization for operation arguments."""
|
| def __init__(self, ast):
|
|
|