remove possibleConstructorReturn in loose mode as well

This commit is contained in:
Henry Zhu
2017-06-09 18:12:12 -04:00
parent 4081f3e23e
commit cdca54aed3
22 changed files with 80 additions and 61 deletions

View File

@@ -2,13 +2,11 @@
// @flow
var C = function () {
function C() {
babelHelpers.classCallCheck(this, C);
}
function C() {}
C.prototype.m = function m(x /*: number*/) /*: string*/ {
return 'a';
};
return C;
}();
}();