summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/error_for_await.ts
blob: 64c81abe4f46f3779aeb2c1ac2484230e103d7f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const listener = Deno.listen({ port: 8080 });

for await (const conn of listener) {
  handleConn(conn);
}

function handleConn(conn: Deno.Conn) {
  const httpConn = Deno.serveHttp(conn);
  for await (const event of httpConn) {
    event.respondWith(new Response("html", { status: 200 }));
  }
}