()
| 2247 | } |
| 2248 | |
| 2249 | function parseNonComputedProperty() { |
| 2250 | var token, startToken; |
| 2251 | |
| 2252 | startToken = lookahead; |
| 2253 | token = lex(); |
| 2254 | |
| 2255 | if (!isIdentifierName(token)) { |
| 2256 | throwUnexpected(token); |
| 2257 | } |
| 2258 | |
| 2259 | return delegate.markEnd(delegate.createIdentifier(token.value), startToken); |
| 2260 | } |
| 2261 | |
| 2262 | function parseNonComputedMember() { |
| 2263 | expect('.'); |
no test coverage detected