TypeScript/tests/baselines/reference/TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.js
2014-09-06 17:40:19 -07:00

86 lines
1.7 KiB
JavaScript

//// [TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.ts]
module A {
export class Point {
x: number;
y: number;
}
}
module A{
// expected error
export class Point {
origin: number;
angle: number;
}
}
module X.Y.Z {
export class Line {
length: number;
}
}
module X {
export module Y {
export module Z {
// expected error
export class Line {
name: string;
}
}
}
}
//// [TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.js]
var A;
(function (A) {
var Point = (function () {
function Point() {
}
return Point;
})();
A.Point = Point;
})(A || (A = {}));
var A;
(function (A) {
// expected error
var Point = (function () {
function Point() {
}
return Point;
})();
A.Point = Point;
})(A || (A = {}));
var X;
(function (X) {
var Y;
(function (Y) {
var Z;
(function (Z) {
var Line = (function () {
function Line() {
}
return Line;
})();
Z.Line = Line;
})(Z = Y.Z || (Y.Z = {}));
})(Y = X.Y || (X.Y = {}));
})(X || (X = {}));
var X;
(function (X) {
var Y;
(function (Y) {
var Z;
(function (Z) {
// expected error
var Line = (function () {
function Line() {
}
return Line;
})();
Z.Line = Line;
})(Z = Y.Z || (Y.Z = {}));
})(Y = X.Y || (X.Y = {}));
})(X || (X = {}));