Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: tools/dom/scripts/idlparser.py

Issue 12079101: Allow parsing of enum declarations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 import re 6 import re
7 import subprocess 7 import subprocess
8 import tempfile 8 import tempfile
9 9
10 from pegparser import * 10 from pegparser import *
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 def Id(): 61 def Id():
62 return re.compile(r'[\w\_]+') 62 return re.compile(r'[\w\_]+')
63 63
64 def _Definitions(): 64 def _Definitions():
65 return MAYBE(MANY(_Definition)) 65 return MAYBE(MANY(_Definition))
66 66
67 def _Definition(): 67 def _Definition():
68 return syntax_switch( 68 return syntax_switch(
69 # Web IDL: 69 # Web IDL:
70 OR(Module, Interface, ExceptionDef, TypeDef, ImplStmt, 70 OR(Module, Interface, ExceptionDef, TypeDef, ImplStmt,
71 ValueTypeDef, Const), 71 ValueTypeDef, Const, Enum),
72 # WebKit: 72 # WebKit:
73 OR(Module, Interface)) 73 OR(Module, Interface, Enum))
74
75 def Enum():
76 def StringLiteral():
77 return re.compile(r'"\w+"')
78
79 return ['enum', Id, '{', MAYBE(MANY(StringLiteral, ',')), '}', ';']
74 80
75 def Module(): 81 def Module():
76 return syntax_switch( 82 return syntax_switch(
77 # Web IDL: 83 # Web IDL:
78 [MAYBE(ExtAttrs), 'module', Id, '{', _Definitions, '}', 84 [MAYBE(ExtAttrs), 'module', Id, '{', _Definitions, '}',
79 MAYBE(';')], 85 MAYBE(';')],
80 # WebKit: 86 # WebKit:
81 ['module', MAYBE(ExtAttrs), Id, '{', _Definitions, '}', 87 ['module', MAYBE(ExtAttrs), Id, '{', _Definitions, '}',
82 MAYBE(';')], 88 MAYBE(';')],
83 # FremontCut: 89 # FremontCut:
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 Args: 438 Args:
433 content -- text to parse. 439 content -- text to parse.
434 defines -- an array of pre-processor defines. 440 defines -- an array of pre-processor defines.
435 includePaths -- an array of path strings used by the 441 includePaths -- an array of path strings used by the
436 gcc pre-processor. 442 gcc pre-processor.
437 """ 443 """
438 if self._syntax == WEBKIT_SYNTAX: 444 if self._syntax == WEBKIT_SYNTAX:
439 content = self._pre_process(content, defines, includePaths) 445 content = self._pre_process(content, defines, includePaths)
440 446
441 return self._pegparser.parse(content) 447 return self._pegparser.parse(content)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698