From 86354a29a40fb97e334f951428239ab8e171e2dd Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 22 Jun 2018 14:23:42 +0200 Subject: Delete go implementation (#276) The go prototype will remain at https://github.com/ry/deno/tree/golang --- testdata/async_error.ts | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 testdata/async_error.ts (limited to 'testdata/async_error.ts') diff --git a/testdata/async_error.ts b/testdata/async_error.ts deleted file mode 100644 index 12dee11eb..000000000 --- a/testdata/async_error.ts +++ /dev/null @@ -1,9 +0,0 @@ - -console.log("hello"); -const foo = async () => { - console.log("before error"); - throw Error("error"); -} - -foo(); -console.log("world"); -- cgit v1.2.3