-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
adf5996
commit ebd46d2
Showing
5 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/015_import_no_ext.ts... | ||
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod3.ts... | ||
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod4.ts... | ||
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod4.js... | ||
Trying http://localhost:4545/tests/subdir/mod2.ts... | ||
Downloading http://localhost:4545/tests/subdir/mod2.ts | ||
Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/print_hello.ts... | ||
Downloading http://localhost:4545/tests/subdir/print_hello.ts | ||
true | ||
[Function: printHello] | ||
[Function: printHello] | ||
true | ||
[Function: printHello] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { isTSFile, printHello, phNoExt } from "./subdir/mod3"; | ||
console.log(isTSFile); | ||
console.log(printHello); | ||
console.log(phNoExt); | ||
|
||
import { isMod4 } from "./subdir/mod4"; | ||
console.log(isMod4); | ||
|
||
import { printHello as ph } from "http://localhost:4545/tests/subdir/mod2"; | ||
console.log(ph); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const isTSFile = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const isTSFile = true; | ||
export { printHello } from "./print_hello.ts"; | ||
export { printHello as phNoExt } from "./print_hello"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const isMod4 = true; |