()
| 2706 | } |
| 2707 | |
| 2708 | function parseNonComputedProperty() { |
| 2709 | var token, node = new Node(); |
| 2710 | |
| 2711 | token = lex(); |
| 2712 | |
| 2713 | if (!isIdentifierName(token)) { |
| 2714 | throwUnexpectedToken(token); |
| 2715 | } |
| 2716 | |
| 2717 | return node.finishIdentifier(token.value); |
| 2718 | } |
| 2719 | |
| 2720 | function parseNonComputedMember() { |
| 2721 | expect('.'); |
no test coverage detected