TypeScript/tests/baselines/reference/mergedDeclarations6.js
2017-02-10 12:48:14 -08:00

65 lines
1.6 KiB
TypeScript

//// [tests/cases/compiler/mergedDeclarations6.ts] ////
//// [a.ts]
export class A {
protected protected: any;
protected setProtected(val: any) {
this.protected = val;
}
}
//// [b.ts]
import {A} from './a';
declare module "./a" {
interface A { }
}
export class B extends A {
protected setProtected() {
}
}
//// [a.js]
define(["require", "exports"], function (require, exports) {
"use strict";
exports.__esModule = true;
var A = (function () {
function A() {
}
A.prototype.setProtected = function (val) {
this.protected = val;
};
return A;
}());
exports.A = A;
});
//// [b.js]
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
define(["require", "exports", "./a"], function (require, exports, a_1) {
"use strict";
exports.__esModule = true;
var B = (function (_super) {
__extends(B, _super);
function B() {
return _super !== null && _super.apply(this, arguments) || this;
}
B.prototype.setProtected = function () {
};
return B;
}(a_1.A));
exports.B = B;
});