(keyword)
| 5220 | // Return true if the next token matches the specified contextual keyword |
| 5221 | |
| 5222 | function matchContextualKeyword(keyword) { |
| 5223 | return matchKeyword(keyword, true); |
| 5224 | } |
| 5225 | |
| 5226 | // Return true if the next token is an assignment operator |
| 5227 |
no test coverage detected