(key, computed, isStatic)
| 8470 | } |
| 8471 | |
| 8472 | function parseClassProperty(key, computed, isStatic) { |
| 8473 | var typeAnnotation; |
| 8474 | |
| 8475 | typeAnnotation = parseTypeAnnotation(); |
| 8476 | expect(';'); |
| 8477 | |
| 8478 | return delegate.createClassProperty( |
| 8479 | key, |
| 8480 | typeAnnotation, |
| 8481 | computed, |
| 8482 | isStatic |
| 8483 | ); |
| 8484 | } |
| 8485 | |
| 8486 | function parseClassElement() { |
| 8487 | var computed = false, generator = false, key, marker = markerCreate(), |
no test coverage detected