Nicolò Ribaudo d21e2217d5
Skip newlines around inline #__PURE__ annotations (#11133)
* Skip newlines around #__PURE__ annotations

* Update tests
2020-02-13 19:16:33 +01:00

21 lines
424 B
JavaScript

var A = function A() {
"use strict";
babelHelpers.classCallCheck(this, A);
};
var B = /*#__PURE__*/function (_A) {
"use strict";
babelHelpers.inherits(B, _A);
function B() {
var _this;
babelHelpers.classCallCheck(this, B);
return babelHelpers.possibleConstructorReturn(_this, _this = babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(B).call(this)));
}
return B;
}(A);