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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
//// [tests/cases/compiler/moduleAugmentationsBundledOutput1.ts] ////
//// [m1.ts]
export class Cls {
}
//// [m2.ts]
import {Cls} from "./m1";
(<any>Cls.prototype).foo = function() { return 1; };
(<any>Cls.prototype).bar = function() { return "1"; };
declare module "./m1" {
interface Cls {
foo(): number;
}
}
declare module "./m1" {
interface Cls {
bar(): string;
}
}
//// [m3.ts]
export class C1 { x: number }
export class C2 { x: string }
//// [m4.ts]
import {Cls} from "./m1";
import {C1, C2} from "./m3";
(<any>Cls.prototype).baz1 = function() { return undefined };
(<any>Cls.prototype).baz2 = function() { return undefined };
declare module "./m1" {
interface Cls {
baz1(): C1;
}
}
declare module "./m1" {
interface Cls {
baz2(): C2;
}
}
//// [test.ts]
import { Cls } from "./m1";
import "m2";
import "m4";
let c: Cls;
c.foo().toExponential();
c.bar().toLowerCase();
c.baz1().x.toExponential();
c.baz2().x.toLowerCase();
//// [out.js]
define("m1", ["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Cls = /** @class */ (function () {
function Cls() {
}
return Cls;
}());
exports.Cls = Cls;
});
define("m2", ["require", "exports", "m1"], function (require, exports, m1_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
m1_1.Cls.prototype.foo = function () { return 1; };
m1_1.Cls.prototype.bar = function () { return "1"; };
});
define("m3", ["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var C1 = /** @class */ (function () {
function C1() {
}
return C1;
}());
exports.C1 = C1;
var C2 = /** @class */ (function () {
function C2() {
}
return C2;
}());
exports.C2 = C2;
});
define("m4", ["require", "exports", "m1"], function (require, exports, m1_2) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
m1_2.Cls.prototype.baz1 = function () { return undefined; };
m1_2.Cls.prototype.baz2 = function () { return undefined; };
});
define("test", ["require", "exports", "m2", "m4"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var c;
c.foo().toExponential();
c.bar().toLowerCase();
c.baz1().x.toExponential();
c.baz2().x.toLowerCase();
});
//// [out.d.ts]
declare module "m1" {
export class Cls {
}
}
declare module "m2" {
module "m1" {
interface Cls {
foo(): number;
}
}
module "m1" {
interface Cls {
bar(): string;
}
}
}
declare module "m3" {
export class C1 {
x: number;
}
export class C2 {
x: string;
}
}
declare module "m4" {
import { C1, C2 } from "m3";
module "m1" {
interface Cls {
baz1(): C1;
}
}
module "m1" {
interface Cls {
baz2(): C2;
}
}
}
declare module "test" {
import "m2";
import "m4";
}
|