12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import _Object$create from "../../core-js/object/create";
- import _Object$keys from "../../core-js/object/keys";
- import _typeof from "../../helpers/esm/typeof";
- import _Symbol$replace from "../../core-js/symbol/replace";
- import _WeakMap from "../../core-js/weak-map";
- import wrapNativeSuper from "./wrapNativeSuper";
- import getPrototypeOf from "./getPrototypeOf";
- import possibleConstructorReturn from "./possibleConstructorReturn";
- import inherits from "./inherits";
- export default function _wrapRegExp(re, groups) {
- _wrapRegExp = function _wrapRegExp(re, groups) {
- return new BabelRegExp(re, groups);
- };
- var _RegExp = wrapNativeSuper(RegExp);
- var _super = RegExp.prototype;
- var _groups = new _WeakMap();
- function BabelRegExp(re, groups) {
- var _this = _RegExp.call(this, re);
- _groups.set(_this, groups);
- return _this;
- }
- inherits(BabelRegExp, _RegExp);
- BabelRegExp.prototype.exec = function (str) {
- var result = _super.exec.call(this, str);
- if (result) result.groups = buildGroups(result, this);
- return result;
- };
- BabelRegExp.prototype[_Symbol$replace] = function (str, substitution) {
- if (typeof substitution === "string") {
- var groups = _groups.get(this);
- return _super[_Symbol$replace].call(this, str, substitution.replace(/\$<([^>]+)>/g, function (_, name) {
- return "$" + groups[name];
- }));
- } else if (typeof substitution === "function") {
- var _this = this;
- return _super[_Symbol$replace].call(this, str, function () {
- var args = [];
- args.push.apply(args, arguments);
- if (_typeof(args[args.length - 1]) !== "object") {
- args.push(buildGroups(args, _this));
- }
- return substitution.apply(this, args);
- });
- } else {
- return _super[_Symbol$replace].call(this, str, substitution);
- }
- };
- function buildGroups(result, re) {
- var g = _groups.get(re);
- return _Object$keys(g).reduce(function (groups, name) {
- groups[name] = result[g[name]];
- return groups;
- }, _Object$create(null));
- }
- return _wrapRegExp.apply(this, arguments);
- }
|