()
| 5251 | // use matchKeyword('yield', false) and matchKeyword('yield', true) |
| 5252 | // (i.e. matchContextualKeyword) appropriately. |
| 5253 | function matchYield() { |
| 5254 | return state.yieldAllowed && matchKeyword('yield', !strict); |
| 5255 | } |
| 5256 | |
| 5257 | function matchAsync() { |
| 5258 | var backtrackToken = lookahead, matches = false; |
no test coverage detected