diff options
Diffstat (limited to 'cli/tests/testdata/info/recursive_imports')
4 files changed, 0 insertions, 24 deletions
diff --git a/cli/tests/testdata/info/recursive_imports/A.ts b/cli/tests/testdata/info/recursive_imports/A.ts deleted file mode 100644 index 43ecdbe5e..000000000 --- a/cli/tests/testdata/info/recursive_imports/A.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { B } from "./B.ts"; -import { thing } from "./common.ts"; - -export function A() { - thing(); - B(); -} diff --git a/cli/tests/testdata/info/recursive_imports/B.ts b/cli/tests/testdata/info/recursive_imports/B.ts deleted file mode 100644 index 9fff0fdc9..000000000 --- a/cli/tests/testdata/info/recursive_imports/B.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { C } from "./C.ts"; -import { thing } from "./common.ts"; - -export function B() { - thing(); - C(); -} diff --git a/cli/tests/testdata/info/recursive_imports/C.ts b/cli/tests/testdata/info/recursive_imports/C.ts deleted file mode 100644 index e47e77b41..000000000 --- a/cli/tests/testdata/info/recursive_imports/C.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { A } from "./A.ts"; -import { thing } from "./common.ts"; - -export function C() { - if (A != null) { - thing(); - } -} diff --git a/cli/tests/testdata/info/recursive_imports/common.ts b/cli/tests/testdata/info/recursive_imports/common.ts deleted file mode 100644 index 2b16a7bf1..000000000 --- a/cli/tests/testdata/info/recursive_imports/common.ts +++ /dev/null @@ -1,2 +0,0 @@ -export function thing() { -} |
