()
| 7987 | // 13 Function Definition |
| 7988 | |
| 7989 | function parseConciseBody() { |
| 7990 | if (match('{')) { |
| 7991 | return parseFunctionSourceElements(); |
| 7992 | } |
| 7993 | return parseAssignmentExpression(); |
| 7994 | } |
| 7995 | |
| 7996 | function parseFunctionSourceElements() { |
| 7997 | var sourceElement, sourceElements = [], token, directive, firstRestricted, |
no test coverage detected