| OLD | NEW |
| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 def _FloatLiteral(): | 164 def _FloatLiteral(): |
| 165 return re.compile(r'[0-9]+\.[0-9]*') | 165 return re.compile(r'[0-9]+\.[0-9]*') |
| 166 | 166 |
| 167 # Attributes: | 167 # Attributes: |
| 168 def Attribute(): | 168 def Attribute(): |
| 169 return syntax_switch( | 169 return syntax_switch( |
| 170 # Web IDL: | 170 # Web IDL: |
| 171 [MAYBE(ExtAttrs), MAYBE(Stringifier), MAYBE(ReadOnly), | 171 [MAYBE(ExtAttrs), MAYBE(Stringifier), MAYBE(ReadOnly), |
| 172 'attribute', Type, Id, MAYBE(_AttrRaises), ';'], | 172 'attribute', Type, Id, MAYBE(_AttrRaises), ';'], |
| 173 # WebKit: | 173 # WebKit: |
| 174 [MAYBE(Stringifier), MAYBE(ReadOnly), 'attribute', | 174 [MAYBE(Stringifier), MAYBE(Static), MAYBE(ReadOnly), 'attribute', |
| 175 MAYBE(ExtAttrs), Type, Id, MAYBE(_AttrRaises), ';'], | 175 MAYBE(ExtAttrs), Type, Id, MAYBE(_AttrRaises), ';'], |
| 176 # FremontCut: | 176 # FremontCut: |
| 177 [MAYBE(_Annotations), MAYBE(ExtAttrs), | 177 [MAYBE(_Annotations), MAYBE(ExtAttrs), |
| 178 MAYBE(_AttrGetterSetter), MAYBE(Stringifier), MAYBE(ReadOnly), | 178 MAYBE(_AttrGetterSetter), MAYBE(Stringifier), MAYBE(ReadOnly), |
| 179 'attribute', Type, Id, MAYBE(_AttrRaises), ';']) | 179 'attribute', Type, Id, MAYBE(_AttrRaises), ';']) |
| 180 | 180 |
| 181 def _AttrRaises(): | 181 def _AttrRaises(): |
| 182 return syntax_switch( | 182 return syntax_switch( |
| 183 # Web IDL: | 183 # Web IDL: |
| 184 MANY(OR(GetRaises, SetRaises)), | 184 MANY(OR(GetRaises, SetRaises)), |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 Args: | 430 Args: |
| 431 content -- text to parse. | 431 content -- text to parse. |
| 432 defines -- an array of pre-processor defines. | 432 defines -- an array of pre-processor defines. |
| 433 includePaths -- an array of path strings used by the | 433 includePaths -- an array of path strings used by the |
| 434 gcc pre-processor. | 434 gcc pre-processor. |
| 435 """ | 435 """ |
| 436 if self._syntax == WEBKIT_SYNTAX: | 436 if self._syntax == WEBKIT_SYNTAX: |
| 437 content = self._pre_process(content, defines, includePaths) | 437 content = self._pre_process(content, defines, includePaths) |
| 438 | 438 |
| 439 return self._pegparser.parse(content) | 439 return self._pegparser.parse(content) |
| OLD | NEW |