TypeScript/tests/baselines/reference/ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.js
2014-07-12 17:30:19 -07:00

54 lines
1.2 KiB
JavaScript

//// [ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts]
class Point {
constructor(public x: number, public y: number) { }
static Origin: Point = { x: 0, y: 0 };
}
module Point {
export var Origin = ""; //expected duplicate identifier error
}
module A {
export class Point {
constructor(public x: number, public y: number) { }
static Origin: Point = { x: 0, y: 0 };
}
export module Point {
export var Origin = ""; //expected duplicate identifier error
}
}
//// [ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.js]
var Point = (function () {
function Point(x, y) {
this.x = x;
this.y = y;
}
Point.Origin = { x: 0, y: 0 };
return Point;
})();
var Point;
(function (Point) {
Point.Origin = "";
})(Point || (Point = {}));
var A;
(function (A) {
var Point = (function () {
function Point(x, y) {
this.x = x;
this.y = y;
}
Point.Origin = { x: 0, y: 0 };
return Point;
})();
A.Point = Point;
(function (Point) {
Point.Origin = "";
})(A.Point || (A.Point = {}));
var Point = A.Point;
})(A || (A = {}));