()
| 268 | } |
| 269 | |
| 270 | async function bar2() { |
| 271 | !(await x); |
| 272 | !(await x /* foo */); |
| 273 | !(/* foo */ await x); |
| 274 | !( |
| 275 | /* foo */ |
| 276 | await x |
| 277 | ); |
| 278 | !( |
| 279 | await x |
| 280 | /* foo */ |
| 281 | ); |
| 282 | !( |
| 283 | await x // foo |
| 284 | ); |
| 285 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…