()
| 2872 | |
| 2873 | |
| 2874 | function identifier() { |
| 2875 | var i = optional_identifier(); |
| 2876 | if (!i) { |
| 2877 | stop(token.id === 'function' && next_token.id === '(' |
| 2878 | ? 'name_function' |
| 2879 | : 'expected_identifier_a'); |
| 2880 | } |
| 2881 | return i; |
| 2882 | } |
| 2883 | |
| 2884 | |
| 2885 | function statement() { |
no test coverage detected
searching dependent graphs…