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

19 lines
407 B
JavaScript

let Array = function Array() {
"use strict";
babelHelpers.classCallCheck(this, Array);
};
let List = /*#__PURE__*/function (_Array) {
"use strict";
babelHelpers.inherits(List, _Array);
function List() {
babelHelpers.classCallCheck(this, List);
return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(List).apply(this, arguments));
}
return List;
}(Array);