1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
=== tests/cases/compiler/mod.cts ===
declare function fun(): void;
>fun : () => void
export default fun;
>fun : () => void
=== tests/cases/compiler/b.mts ===
import a from "./mod.cjs";
>a : typeof a
import { default as b } from "./mod.cjs";
>default : typeof a
>b : typeof a
import c, { default as d } from "./mod.cjs";
>c : typeof a
>default : typeof a
>d : typeof a
import * as self from "./b.mjs";
>self : typeof self
export { default } from "./mod.cjs";
>default : typeof a
export { default as def } from "./mod.cjs";
>default : typeof a
>def : typeof a
a === b;
>a === b : boolean
>a : typeof a
>b : typeof a
b === c;
>b === c : boolean
>b : typeof a
>c : typeof a
c === d;
>c === d : boolean
>c : typeof a
>d : typeof a
d === self.default;
>d === self.default : boolean
>d : typeof a
>self.default : typeof a
>self : typeof self
>default : typeof a
self.default === self.def;
>self.default === self.def : boolean
>self.default : typeof a
>self : typeof self
>default : typeof a
>self.def : typeof a
>self : typeof self
>def : typeof a
// should all fail
a();
>a() : any
>a : typeof a
b();
>b() : any
>b : typeof a
c();
>c() : any
>c : typeof a
d();
>d() : any
>d : typeof a
self.default();
>self.default() : any
>self.default : typeof a
>self : typeof self
>default : typeof a
self.def();
>self.def() : any
>self.def : typeof a
>self : typeof self
>def : typeof a
// should all work
a.default();
>a.default() : void
>a.default : () => void
>a : typeof a
>default : () => void
b.default();
>b.default() : void
>b.default : () => void
>b : typeof a
>default : () => void
c.default();
>c.default() : void
>c.default : () => void
>c : typeof a
>default : () => void
d.default();
>d.default() : void
>d.default : () => void
>d : typeof a
>default : () => void
self.default.default();
>self.default.default() : void
>self.default.default : () => void
>self.default : typeof a
>self : typeof self
>default : typeof a
>default : () => void
self.def.default();
>self.def.default() : void
>self.def.default : () => void
>self.def : typeof a
>self : typeof self
>def : typeof a
>default : () => void
|