()
| 5783 | } |
| 5784 | |
| 5785 | function matchAsyncFuncExprOrDecl() { |
| 5786 | var token; |
| 5787 | |
| 5788 | if (matchAsync()) { |
| 5789 | token = lookahead2(); |
| 5790 | if (token.type === Token.Keyword && token.value === 'function') { |
| 5791 | return true; |
| 5792 | } |
| 5793 | } |
| 5794 | |
| 5795 | return false; |
| 5796 | } |
| 5797 | |
| 5798 | // 11.1 Primary Expressions |
| 5799 |
no test coverage detected