TypeScript/tests/baselines/reference/fluentClasses.js
Anders Hejlsberg abd2a8526d Adding tests
2015-09-26 12:58:53 -07:00

56 lines
1.1 KiB
TypeScript

//// [fluentClasses.ts]
class A {
foo() {
return this;
}
}
class B extends A {
bar() {
return this;
}
}
class C extends B {
baz() {
return this;
}
}
var c: C;
var z = c.foo().bar().baz(); // Fluent pattern
//// [fluentClasses.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var A = (function () {
function A() {
}
A.prototype.foo = function () {
return this;
};
return A;
})();
var B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
B.prototype.bar = function () {
return this;
};
return B;
})(A);
var C = (function (_super) {
__extends(C, _super);
function C() {
_super.apply(this, arguments);
}
C.prototype.baz = function () {
return this;
};
return C;
})(B);
var c;
var z = c.foo().bar().baz(); // Fluent pattern