| Index: client/dom/scripts/idlparser.py
|
| diff --git a/client/dom/scripts/idlparser.py b/client/dom/scripts/idlparser.py
|
| index 8f38365cc7aaa88ff07c46001fb8707bbdc5db99..8de223e20877f5f79ffd7421a8aab63e4196fcff 100755
|
| --- a/client/dom/scripts/idlparser.py
|
| +++ b/client/dom/scripts/idlparser.py
|
| @@ -104,7 +104,7 @@ class IDLParser(object):
|
| # WebKit:
|
| OR(Const, Attribute, Operation),
|
| # FremontCut:
|
| - OR(Const, Attribute, Operation, Snippet))
|
| + OR(Const, Attribute, Operation))
|
|
|
| # Interface inheritance:
|
| def _ParentInterfaces():
|
| @@ -381,13 +381,6 @@ class IDLParser(object):
|
| def AnnotationArgValue():
|
| return re.compile(r'[\w&0-9:/\-\.]+')
|
|
|
| - # Snippets - used in the FremontCut IDL grammer:
|
| - def Snippet():
|
| - return [MAYBE(_Annotations), 'snippet', '{', SnippetText, '}', ';']
|
| -
|
| - def SnippetText():
|
| - return re.compile(r'[^\}]*')
|
| -
|
| ###################### END GRAMMAR #####################
|
|
|
| # Return the grammar's root rule:
|
|
|