()
| 2859 | |
| 2860 | |
| 2861 | function optional_identifier() { |
| 2862 | if (next_token.identifier) { |
| 2863 | advance(); |
| 2864 | if (option.safe && banned[token.string]) { |
| 2865 | warn('adsafe_a', token); |
| 2866 | } else if (token.reserved && !option.es5) { |
| 2867 | warn('expected_identifier_a_reserved', token); |
| 2868 | } |
| 2869 | return token.string; |
| 2870 | } |
| 2871 | } |
| 2872 | |
| 2873 | |
| 2874 | function identifier() { |
no test coverage detected
searching dependent graphs…