File tree Expand file tree Collapse file tree 5 files changed +24
-0
lines changed Expand file tree Collapse file tree 5 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/015_import_no_ext.ts...
2+ Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod3.ts...
3+ Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod4.ts...
4+ Trying /Users/kevinqian/Desktop/Programming/Deno/deno/tests/subdir/mod4.js...
5+ Trying http://localhost:4545/tests/subdir/mod2.ts...
6+ Downloading http://localhost:4545/tests/subdir/mod2.ts
7+ Downloading http://localhost:4545/tests/subdir/print_hello.ts
8+ true
9+ true
10+ true
11+ true
Original file line number Diff line number Diff line change 1+ import { isTSFile , printHello } from "./subdir/mod3" ;
2+ console . log ( isTSFile ) ;
3+ console . log ( ! ! printHello ) ;
4+
5+ import { isMod4 } from "./subdir/mod4" ;
6+ console . log ( isMod4 ) ;
7+
8+ import { printHello as ph } from "http://localhost:4545/tests/subdir/mod2" ;
9+ console . log ( ! ! ph ) ;
Original file line number Diff line number Diff line change 1+ export const isTSFile = false ;
Original file line number Diff line number Diff line change 1+ export const isTSFile = true ;
2+ export { printHello } from "./print_hello.ts" ;
Original file line number Diff line number Diff line change 1+ export const isMod4 = true ;
You can’t perform that action at this time.
0 commit comments