()
| 2153 | // 11.1.6 The Grouping Operator |
| 2154 | |
| 2155 | function parseGroupExpression() { |
| 2156 | var expr; |
| 2157 | |
| 2158 | expect('('); |
| 2159 | |
| 2160 | expr = parseExpression(); |
| 2161 | |
| 2162 | expect(')'); |
| 2163 | |
| 2164 | return expr; |
| 2165 | } |
| 2166 | |
| 2167 | |
| 2168 | // 11.1 Primary Expressions |
no test coverage detected