TypeScript/tests/baselines/reference/functionExpressionAndLambdaMatchesFunction.js

22 lines
511 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [functionExpressionAndLambdaMatchesFunction.ts]
class CDoc {
constructor() {
function doSomething(a: Function) {
}
doSomething(() => undefined);
doSomething(function () { });
}
}
//// [functionExpressionAndLambdaMatchesFunction.js]
var CDoc = (function () {
function CDoc() {
function doSomething(a) {
}
doSomething(function () { return undefined; });
doSomething(function () { });
2014-07-13 01:04:16 +02:00
}
return CDoc;
})();