TypeScript/tests/baselines/reference/nameCollision.js

102 lines
1.9 KiB
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [nameCollision.ts]
module A {
// these 2 statements force an underscore before the 'A'
// in the generated function call.
var A = 12;
var _A = '';
}
module B {
var A = 12;
}
module B {
// re-opened module with colliding name
// this should add an underscore.
class B {
name: string;
}
}
module X {
var X = 13;
export module Y {
var Y = 13;
export module Z {
var X = 12;
var Y = 12;
var Z = 12;
}
}
}
module Y.Y {
export enum Y {
Red, Blue
}
}
// no collision, since interface doesn't
// generate code.
module D {
export interface D {
id: number;
}
export var E = 'hello';
}
//// [nameCollision.js]
var A;
2015-03-24 00:16:29 +01:00
(function (A_1) {
// these 2 statements force an underscore before the 'A'
// in the generated function call.
2014-07-13 01:04:16 +02:00
var A = 12;
var _A = '';
})(A || (A = {}));
var B;
(function (B) {
var A = 12;
})(B || (B = {}));
var B;
2015-03-24 00:16:29 +01:00
(function (B_1) {
// re-opened module with colliding name
// this should add an underscore.
2014-07-13 01:04:16 +02:00
var B = (function () {
function B() {
}
return B;
})();
})(B || (B = {}));
var X;
2015-03-24 00:16:29 +01:00
(function (X_1) {
2014-07-13 01:04:16 +02:00
var X = 13;
var Y;
2015-03-24 00:16:29 +01:00
(function (Y_1) {
2014-07-13 01:04:16 +02:00
var Y = 13;
var Z;
2015-03-24 00:16:29 +01:00
(function (Z_1) {
2014-07-13 01:04:16 +02:00
var X = 12;
var Y = 12;
var Z = 12;
2015-03-24 00:16:29 +01:00
})(Z = Y_1.Z || (Y_1.Z = {}));
})(Y = X_1.Y || (X_1.Y = {}));
2014-07-13 01:04:16 +02:00
})(X || (X = {}));
var Y;
2015-03-24 00:16:29 +01:00
(function (Y_2) {
var Y;
2015-03-24 00:16:29 +01:00
(function (Y_3) {
2014-07-13 01:04:16 +02:00
(function (Y) {
Y[Y["Red"] = 0] = "Red";
Y[Y["Blue"] = 1] = "Blue";
2015-03-24 00:16:29 +01:00
})(Y_3.Y || (Y_3.Y = {}));
var Y = Y_3.Y;
})(Y = Y_2.Y || (Y_2.Y = {}));
2014-07-13 01:04:16 +02:00
})(Y || (Y = {}));
2014-08-14 15:53:37 +02:00
// no collision, since interface doesn't
// generate code.
2014-07-13 01:04:16 +02:00
var D;
(function (D) {
D.E = 'hello';
})(D || (D = {}));