* Test whether a given token is a punctuator matching the specified value * @param {Token} token * @param {string} value * @returns {boolean}
(token, value)
| 23949 | * @returns {boolean} |
| 23950 | */ |
| 23951 | function checkPunctuator(token, value) { |
| 23952 | return token.type === "(punctuator)" && token.value === value; |
| 23953 | } |
| 23954 | |
| 23955 | // Check whether this function has been reached for a destructuring assign with undeclared values |
| 23956 | function destructuringAssignOrJsonValue() { |
no outgoing calls
no test coverage detected