()
| 129100 | } |
| 129101 | |
| 129102 | function parseNonComputedProperty() { |
| 129103 | var token; |
| 129104 | index = lookahead.start; |
| 129105 | token = lex(); |
| 129106 | |
| 129107 | if (!isIdentifierName(token)) { |
| 129108 | throwUnexpected(token); |
| 129109 | } |
| 129110 | |
| 129111 | return finishIdentifier(token.value); |
| 129112 | } |
| 129113 | |
| 129114 | function parseNonComputedMember() { |
| 129115 | expect('.'); |
no test coverage detected