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/subdir/mod1.ts | 17 ----------------- testdata/subdir/print_hello.ts | 3 --- testdata/subdir/subdir2/mod2.ts | 9 --------- 3 files changed, 29 deletions(-) delete mode 100644 testdata/subdir/mod1.ts delete mode 100644 testdata/subdir/print_hello.ts delete mode 100644 testdata/subdir/subdir2/mod2.ts (limited to 'testdata/subdir') diff --git a/testdata/subdir/mod1.ts b/testdata/subdir/mod1.ts deleted file mode 100644 index 393535588..000000000 --- a/testdata/subdir/mod1.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { returnsFoo, printHello2 } from "./subdir2/mod2.ts"; - -export function returnsHi(): string { - return "Hi"; -} - -export function returnsFoo2(): string { - return returnsFoo(); -} - -export function printHello3(): void { - printHello2(); -} - -export function throwsError(): void { - throw Error("exception from mod1"); -} diff --git a/testdata/subdir/print_hello.ts b/testdata/subdir/print_hello.ts deleted file mode 100644 index 7ecce5040..000000000 --- a/testdata/subdir/print_hello.ts +++ /dev/null @@ -1,3 +0,0 @@ -export function printHello(): void { - console.log("Hello"); -} diff --git a/testdata/subdir/subdir2/mod2.ts b/testdata/subdir/subdir2/mod2.ts deleted file mode 100644 index c88d4708c..000000000 --- a/testdata/subdir/subdir2/mod2.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { printHello } from "../print_hello.ts"; - -export function returnsFoo(): string { - return "Foo"; -} - -export function printHello2(): void { - printHello(); -} -- cgit v1.2.3