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

53 lines
1,022 B
JavaScript

//// [fuzzy.ts]
module M {
export interface I {
works:()=>R;
alsoWorks:()=>R;
doesntWork:()=>R;
}
export interface R {
anything:number;
oneI:I;
}
export class C implements I {
constructor(public x:number) {
}
works():R {
return <R>({ anything: 1 });
}
doesntWork():R {
return { anything:1, oneI:this };
}
worksToo():R {
return <R>({ oneI: this });
}
}
}
//// [fuzzy.js]
var M;
(function (M) {
var C = (function () {
function C(x) {
this.x = x;
}
C.prototype.works = function () {
return ({ anything: 1 });
};
C.prototype.doesntWork = function () {
return { anything: 1, oneI: this };
};
C.prototype.worksToo = function () {
return ({ oneI: this });
};
return C;
})();
M.C = C;
})(M || (M = {}));