Sha256: 4f12ba864faeb472f881a95de0f9f744e9f1403448a08958dcd416b8919b4270

Contents?: true

Size: 1.33 KB

Versions: 24

Compression:

Stored size: 1.33 KB

Contents

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.generateRegexpuOptions = generateRegexpuOptions;

var _features = require("./features");

function generateRegexpuOptions(node, features) {
  let useUnicodeFlag = false,
      dotAllFlag = false,
      unicodePropertyEscape = false,
      namedGroup = false;
  const {
    flags,
    pattern
  } = node;
  const flagsIncludesU = flags.includes("u");

  if (flagsIncludesU) {
    if (!(0, _features.hasFeature)(features, _features.FEATURES.unicodeFlag)) {
      useUnicodeFlag = true;
    }

    if ((0, _features.hasFeature)(features, _features.FEATURES.unicodePropertyEscape) && /\\[pP]{/.test(pattern)) {
      unicodePropertyEscape = true;
    }
  }

  if ((0, _features.hasFeature)(features, _features.FEATURES.dotAllFlag) && flags.indexOf("s") >= 0) {
    dotAllFlag = true;
  }

  if ((0, _features.hasFeature)(features, _features.FEATURES.namedCaptureGroups) && /\(\?<(?![=!])/.test(pattern)) {
    namedGroup = true;
  }

  if (!namedGroup && !unicodePropertyEscape && !dotAllFlag && (!flagsIncludesU || useUnicodeFlag)) {
    return null;
  }

  if (flagsIncludesU && flags.indexOf("s") >= 0) {
    dotAllFlag = true;
  }

  return {
    useUnicodeFlag,
    onNamedGroup: () => {},
    namedGroup,
    unicodePropertyEscape,
    dotAllFlag,
    lookbehind: true
  };
}

Version data entries

24 entries across 23 versions & 7 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
disco_app-0.16.1 test/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
disco_app-0.15.2 test/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
disco_app-0.18.4 test/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
disco_app-0.18.1 test/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
disco_app-0.14.0 test/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
tang-0.2.1 spec/tang_app/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
tang-0.2.0 spec/tang_app/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
tang-0.1.0 spec/tang_app/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
tang-0.0.9 spec/tang_app/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
enju_library-0.3.8 spec/dummy/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
condenser-0.3 lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
condenser-0.2 lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js
condenser-0.1 lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js