lib: add RegExp primordials

PR-URL: https://github.com/nodejs/node/pull/31208
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Sebastien Ahkrin 2020-01-06 03:48:14 +01:00 committed by Rich Trott
parent b8922e8924
commit a494d12723
8 changed files with 12 additions and 0 deletions

View File

@ -35,6 +35,8 @@ rules:
message: "Use `const { Promise } = primordials;` instead of the global."
- name: Reflect
message: "Use `const { Reflect } = primordials;` instead of the global."
- name: RegExp
message: "Use `const { RegExp } = primordials;` instead of the global."
- name: Set
message: "Use `const { Set } = primordials;` instead of the global."
- name: Symbol

View File

@ -25,6 +25,7 @@ const {
ObjectAssign,
ObjectDefineProperty,
ObjectSetPrototypeOf,
RegExp,
Symbol,
SymbolFor,
} = primordials;

View File

@ -1,6 +1,7 @@
'use strict';
const {
RegExp,
Symbol,
} = primordials;

View File

@ -5,6 +5,7 @@ const {
ObjectDefineProperty,
ObjectFreeze,
ObjectSeal,
RegExp,
RegExpPrototypeExec,
RegExpPrototypeTest,
StringPrototypeSlice,

View File

@ -3,6 +3,7 @@
const {
Boolean,
NumberIsInteger,
RegExp,
} = primordials;
// Regex used for ansi escape code splitting

View File

@ -1,5 +1,9 @@
'use strict';
const {
RegExp,
} = primordials;
const { inspect, format, formatWithOptions } = require('internal/util/inspect');
// `debugs` is deliberately initialized to undefined so any call to

View File

@ -35,6 +35,7 @@ const {
ObjectPrototypeHasOwnProperty,
ObjectPrototypePropertyIsEnumerable,
ObjectSeal,
RegExp,
RegExpPrototypeToString,
Set,
SetPrototype,

View File

@ -56,6 +56,7 @@ const {
ObjectSetPrototypeOf,
Promise,
PromiseRace,
RegExp,
Set,
Symbol,
WeakSet,