wrapNativeSuper.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import _Map from "@babel/runtime-corejs3/core-js/map";
  2. import _Object$create from "@babel/runtime-corejs3/core-js/object/create";
  3. import getPrototypeOf from "./getPrototypeOf.js";
  4. import setPrototypeOf from "./setPrototypeOf.js";
  5. import isNativeFunction from "./isNativeFunction.js";
  6. import construct from "./construct.js";
  7. export default function _wrapNativeSuper(Class) {
  8. var _cache = typeof _Map === "function" ? new _Map() : undefined;
  9. _wrapNativeSuper = function _wrapNativeSuper(Class) {
  10. if (Class === null || !isNativeFunction(Class)) return Class;
  11. if (typeof Class !== "function") {
  12. throw new TypeError("Super expression must either be null or a function");
  13. }
  14. if (typeof _cache !== "undefined") {
  15. if (_cache.has(Class)) return _cache.get(Class);
  16. _cache.set(Class, Wrapper);
  17. }
  18. function Wrapper() {
  19. return construct(Class, arguments, getPrototypeOf(this).constructor);
  20. }
  21. Wrapper.prototype = _Object$create(Class.prototype, {
  22. constructor: {
  23. value: Wrapper,
  24. enumerable: false,
  25. writable: true,
  26. configurable: true
  27. }
  28. });
  29. return setPrototypeOf(Wrapper, Class);
  30. };
  31. return _wrapNativeSuper(Class);
  32. }