()
| 1208 | } |
| 1209 | |
| 1210 | parseAsyncArgument() { |
| 1211 | const arg = this.parseAssignmentExpression(); |
| 1212 | this.context.firstCoverInitializedNameError = null; |
| 1213 | return arg; |
| 1214 | } |
| 1215 | |
| 1216 | parseAsyncArguments(): Node.ArgumentListElement[] { |
| 1217 | this.expect('('); |
nothing calls this directly
no test coverage detected