()
| 3190 | } |
| 3191 | |
| 3192 | function parseStatementList() { |
| 3193 | var list = []; |
| 3194 | while (startIndex < length) { |
| 3195 | if (match('}')) { |
| 3196 | break; |
| 3197 | } |
| 3198 | list.push(parseStatementListItem()); |
| 3199 | } |
| 3200 | |
| 3201 | return list; |
| 3202 | } |
| 3203 | |
| 3204 | function parseBlock() { |
| 3205 | var block, node = new Node(); |
no test coverage detected