blob: db3cdecb4a00570f3d77cb9081eb197c0ff2112b (
plain)
1
2
3
4
5
6
7
8
9
10
|
[WILDCARD]
error: TS1103 [ERROR]: 'for await' loops are only allowed within async functions and at the top levels of modules.
for await (const event of httpConn) {
~~~~~
at [WILDCARD]error_for_await.ts:9:7
TS1356 [ERROR]: Did you mean to mark this function as 'async'?
function handleConn(conn: Deno.Conn) {
~~~~~~~~~~
at [WILDCARD]error_for_await.ts:7:10
|