()
| 5918 | } |
| 5919 | |
| 5920 | function parseNonComputedProperty() { |
| 5921 | var marker = markerCreate(), |
| 5922 | token = lex(); |
| 5923 | |
| 5924 | if (!isIdentifierName(token)) { |
| 5925 | throwUnexpected(token); |
| 5926 | } |
| 5927 | |
| 5928 | return markerApply(marker, delegate.createIdentifier(token.value)); |
| 5929 | } |
| 5930 | |
| 5931 | function parseNonComputedMember() { |
| 5932 | expect('.'); |
no test coverage detected