Skip to content

Commit

Permalink
lib: add RegExp primordials
Browse files Browse the repository at this point in the history
PR-URL: #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>
  • Loading branch information
Sebastien-Ahkrin authored and codebytere committed Mar 14, 2020
1 parent a91a824 commit bc4cbe3
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/.eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions lib/_tls_wrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const {
ObjectAssign,
ObjectDefineProperty,
ObjectSetPrototypeOf,
RegExp,
Symbol,
} = primordials;

Expand Down
1 change: 1 addition & 0 deletions lib/internal/net.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';

const {
RegExp,
Symbol,
} = primordials;

Expand Down
1 change: 1 addition & 0 deletions lib/internal/policy/sri.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const {
ObjectDefineProperty,
ObjectFreeze,
ObjectSeal,
RegExp,
RegExpPrototypeExec,
RegExpPrototypeTest,
StringPrototypeSlice,
Expand Down
2 changes: 2 additions & 0 deletions lib/internal/util/debuglog.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

const { format } = require('internal/util/inspect');

const { RegExp } = primordials;

// `debugs` is deliberately initialized to undefined so any call to
// debuglog() before initializeDebugEnv() is called will throw.
let debugs;
Expand Down
1 change: 1 addition & 0 deletions lib/internal/util/inspect.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const {
ObjectPrototypeHasOwnProperty,
ObjectPrototypePropertyIsEnumerable,
ObjectSeal,
RegExp,
RegExpPrototypeToString,
Set,
SetPrototype,
Expand Down
1 change: 1 addition & 0 deletions lib/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const {
ObjectSetPrototypeOf,
Promise,
PromiseRace,
RegExp,
Set,
Symbol,
WeakMap,
Expand Down

0 comments on commit bc4cbe3

Please sign in to comment.