TypeScript/tests/baselines/reference/functionExpressionAndLambdaMatchesFunction.js

22 lines
511 B
TypeScript

//// [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 () { });
}
return CDoc;
})();