]> Lady’s Gitweb - Pisces/commitdiff
Support unicode sets in Matchers
authorLady <redacted>
Thu, 24 Jul 2025 04:12:58 +0000 (00:12 -0400)
committerLady <redacted>
Thu, 24 Jul 2025 04:23:06 +0000 (00:23 -0400)
Matchers need to be unicode‐aware, but this can now be either thru the
`u` flag or the `v` flag. The former is still the default when a string
is provided to the constructor.

This commit also includes some minor documentation cleanup and a few
additional tests.

string.js
string.test.js

index e8126d14fa44be9155723de05b4720403ee327f9..ddc05d7d71ee6f479c2153596542d8cba9554a03 100644 (file)
--- a/string.js
+++ b/string.js
@@ -1,15 +1,19 @@
-// ♓🌟 Piscēs ∷ string.js
-// ====================================================================
-//
-// Copyright © 2022–2023 Lady [@ Lady’s Computer].
-//
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
+// SPDX-FileCopyrightText: 2022, 2023, 2025 Lady <https://www.ladys.computer/about/#lady>
+// SPDX-License-Identifier: MPL-2.0
+/**
+ * ⁌ ♓🧩 Piscēs ∷ string.js
+ *
+ * Copyright © 2022–2023, 2025 Lady [@ Ladys Computer].
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
+ */
 
 import {
   bind,
   call,
+  completesNormally,
   createArrowFunction,
   createCallableFunction,
   identity,
@@ -28,6 +32,8 @@ import {
 } from "./object.js";
 import { sameValue, toLength, UNDEFINED } from "./value.js";
 
+const PISCĒS = "♓🧩 Piscēs";
+
 const RE = RegExp;
 const { prototype: rePrototype } = RE;
 const { prototype: arrayPrototype } = Array;
@@ -37,14 +43,14 @@ const { exec: reExec } = rePrototype;
 
 export const {
   /**
-   * A `RegExp`like object which only matches entire strings, and may
+   * A `RegExp´‐like object which only matches entire strings, and may
    * have additional constraints specified.
    *
    * Matchers are callable objects and will return true if they are
    * called with a string that they match, and false otherwise.
-   * Matchers will always return false if called with nonstrings,
-   * although other methods like `::exec` coerce their arguments and
-   * may still return true.
+   * Matchers will always return false if called with nonstrings, altho
+   * other methods like `::exec´ coerce their arguments and may still
+   * return true.
    */
   Matcher,
 } = (() => {
@@ -67,17 +73,28 @@ export const {
     Object.getOwnPropertyDescriptor(rePrototype, "sticky").get;
   const getUnicode =
     Object.getOwnPropertyDescriptor(rePrototype, "unicode").get;
+  const getUnicodeSets =
+    Object.getOwnPropertyDescriptor(rePrototype, "unicodeSets").get;
 
+  /**
+   * The internal implementation of `Matcher´.
+   *
+   * ※ This class extends the identity function to enable the addition
+   * of private fields to the callable matcher function it constructs.
+   *
+   * ※ This class is not exposed.
+   */
   const Matcher = class extends identity {
     #constraint;
     #regExp;
 
     /**
-     * Constructs a new `Matcher` from the provided source.
+     * Constructs a new `Matcher´ from the provided source.
      *
      * If the provided source is a regular expression, then it must
-     * have the unicode flag set. Otherwise, it is interpreted as the
-     * string source of a regular expression with the unicode flag set.
+     * have either the unicode flag set or the unicode sets flag set.
+     * Otherwise, it is interpreted as the string source of a regular
+     * expression with the unicode flag set.
      *
      * Other flags are taken from the provided regular expression
      * object, if any are present.
@@ -88,13 +105,13 @@ export const {
      * third argument. If provided, it will be called with three
      * arguments whenever a match appears successful: first, the string
      * being matched, second, the match result, and third, the
-     * `Matcher` object itself. If the return value of this call is
+     * `Matcher´ object itself. If the return value of this call is
      * falsey, then the match will be considered a failure.
      *
      * ☡ If the provided source regular expression uses nongreedy
      * quantifiers, it may not match the whole string even if a match
      * with the whole string is possible. Surround the regular
-     * expression with `^(?:` and `)$` if you don’t want nongreedy
+     * expression with `^(?:´ and `)$´ if you don¦t want nongreedy
      * regular expressions to fail when shorter matches are possible.
      */
     constructor(source, name = UNDEFINED, constraint = null) {
@@ -104,38 +121,46 @@ export const {
             // The provided value is not a string.
             return false;
           } else {
-            // The provided value is a string. Set the `.lastIndex` of
-            // the regular expression to 0 and see if the first attempt
-            // at a match matches the whole string and passes the
-            // provided constraint (if present).
+            // The provided value is a string.
+            //
+            // Set the `.lastIndex´ of the regular expression to 0, and
+            // see if the first attempt at a match successfully matches
+            // the whole string and passes the provided constraint (if
+            // present).
             regExp.lastIndex = 0;
             const result = call(reExec, regExp, [$]);
-            return result?.[0] === $ &&
-              (constraint === null || constraint($, result, this));
+            return result?.[0] === $
+              && (constraint === null || constraint($, result, this));
           }
         },
       );
       const regExp = this.#regExp = (() => {
-        try {
-          call(reExec, source, [""]); // throws if source not a RegExp
-        } catch {
-          return new RE(`${source}`, "u");
-        }
-        const unicode = call(getUnicode, source, []);
-        if (!unicode) {
-          // The provided regular expression does not have a unicode
-          // flag.
-          throw new TypeError(
-            `Piscēs: Cannot create Matcher from non‐Unicode RegExp: ${source}`,
-          );
+        if (completesNormally(() => call(reExec, source, [""]))) {
+          // The provided source is a `RegExp´.
+          if (
+            !call(getUnicode, source, [])
+            && !call(getUnicodeSets, source, [])
+          ) {
+            // The provided regular expression does not have a unicode
+            // flag or unicode sets flag.
+            throw new TypeError(
+              `${PISCĒS}: Cannot create Matcher from non‐Unicode RegExp: ${source}`,
+            );
+          } else {
+            // The provided regular expression has a unicode flag or
+            // unicode sets flag.
+            return new RE(source);
+          }
         } else {
-          // The provided regular expression has a unicode flag.
-          return new RE(source);
+          // The provided source is not a `RegExp´.
+          //
+          // Create one using it as the source string.
+          return new RE(`${source}`, "u");
         }
       })();
       if (constraint !== null && typeof constraint !== "function") {
         throw new TypeError(
-          "Piscēs: Cannot construct Matcher: Constraint is not callable.",
+          `${PISCĒS}: Cannot construct Matcher: Constraint is not callable.`,
         );
       } else {
         this.#constraint = constraint;
@@ -160,13 +185,13 @@ export const {
       }
     }
 
-    /** Gets whether the dot‐all flag is present on this `Matcher`. */
+    /** Gets whether the dot‐all flag is present on this `Matcher´. */
     get dotAll() {
       return call(getDotAll, this.#regExp, []);
     }
 
     /**
-     * Executes this `Matcher` on the provided value and returns the
+     * Executes this `Matcher´ on the provided value and returns the
      * result if there is a match, or null otherwise.
      *
      * Matchers only match if they can match the entire value on the
@@ -183,8 +208,8 @@ export const {
       regExp.lastIndex = 0;
       const result = call(reExec, regExp, [string]);
       if (
-        result?.[0] === string &&
-        (constraint === null || constraint(string, result, this))
+        result?.[0] === string
+        && (constraint === null || constraint(string, result, this))
       ) {
         // The entire string was matched and the constraint, if
         // present, returned a truthy value.
@@ -197,59 +222,64 @@ export const {
     }
 
     /**
-     * Gets the flags present on this `Matcher`.
+     * Gets the flags present on this `Matcher´.
      *
-     * ※ This needs to be defined because the internal `RegExp` object
-     * may have flags which are not yet recognized by ♓🌟 Piscēs.
+     * ※ This needs to be defined because the internal `RegExp´ object
+     * may have flags which are not yet recognized by ♓🧩 Piscēs.
      */
     get flags() {
       return call(getFlags, this.#regExp, []);
     }
 
-    /** Gets whether the global flag is present on this `Matcher`. */
+    /** Gets whether the global flag is present on this `Matcher´. */
     get global() {
       return call(getGlobal, this.#regExp, []);
     }
 
     /**
-     * Gets whether the has‐indices flag is present on this `Matcher`.
+     * Gets whether the has‐indices flag is present on this `Matcher´.
      */
     get hasIndices() {
       return call(getHasIndices, this.#regExp, []);
     }
 
     /**
-     * Gets whether the ignore‐case flag is present on this `Matcher`.
+     * Gets whether the ignore‐case flag is present on this `Matcher´.
      */
     get ignoreCase() {
       return call(getIgnoreCase, this.#regExp, []);
     }
 
     /**
-     * Gets whether the multiline flag is present on this `Matcher`.
+     * Gets whether the multiline flag is present on this `Matcher´.
      */
     get multiline() {
       return call(getMultiline, this.#regExp, []);
     }
 
-    /** Gets the regular expression source for this `Matcher`. */
+    /** Gets the regular expression source for this `Matcher´. */
     get source() {
       return call(getSource, this.#regExp, []);
     }
 
-    /** Gets whether the sticky flag is present on this `Matcher`. */
+    /** Gets whether the sticky flag is present on this `Matcher´. */
     get sticky() {
       return call(getSticky, this.#regExp, []);
     }
 
     /**
-     * Gets whether the unicode flag is present on this `Matcher`.
-     *
-     * ※ This will always be true.
+     * Gets whether the unicode flag is present on this `Matcher´.
      */
     get unicode() {
       return call(getUnicode, this.#regExp, []);
     }
+
+    /**
+     * Gets whether the unicode sets flag is present on this `Matcher´.
+     */
+    get unicodeSets() {
+      return call(getUnicodeSets, this.#regExp, []);
+    }
   };
 
   const matcherConstructor = Object.defineProperties(
@@ -316,7 +346,7 @@ export const {
 })();
 
 /**
- * Returns −0 if the provided argument is "-0"; returns a number
+ * Returns −0 if the provided argument is `"-0"´; returns a number
  * representing the index if the provided argument is a canonical
  * numeric index string; otherwise, returns undefined.
  *
@@ -338,7 +368,7 @@ export const {
   /**
    * Returns an iterator over the codepoints in the string representation
    * of the provided value according to the algorithm of
-   * `String::[Symbol.iterator]`.
+   * `String::[Symbol.iterator]´.
    */
   characters,
 
@@ -405,7 +435,7 @@ export const {
 /**
  * Returns the character at the provided position in the string
  * representation of the provided value according to the algorithm of
- * `String::codePointAt`.
+ * `String::codePointAt´.
  */
 export const getCharacter = ($, pos) => {
   const codepoint = getCodepoint($, pos);
@@ -418,16 +448,16 @@ export const {
   /**
    * Returns the code unit at the provided position in the string
    * representation of the provided value according to the algorithm of
-   * `String::charAt`, except that out‐of‐bounds values return undefined
-   * in place of nan.
+   * `String::charAt´, except that out‐of‐bounds values return
+   * undefined in place of nan.
    */
   getCodeUnit,
 
   /**
    * Returns a string created from the provided code units.
    *
-   * ※ This is effectively an alias for `String.fromCharCode`, but
-   * with the same error behaviour as `String.fromCodePoint`.
+   * ※ This is effectively an alias for `String.fromCharCode´, but
+   * with the same error behaviour as `String.fromCodePoint´.
    *
    * ☡ This function throws an error if provided with an argument which
    * is not an integral number from 0 to FFFF₁₆ inclusive.
@@ -437,12 +467,12 @@ export const {
   /**
    * Returns the result of catenating the string representations of the
    * provided values, returning a new string according to the algorithm
-   * of `String::concat`.
+   * of `String::concat´.
    *
    * ※ If no arguments are given, this function returns the empty
    * string. This is different behaviour than if an explicit undefined
    * first argument is given, in which case the resulting string will
-   * begin with `"undefined"`.
+   * begin with `"undefined"´.
    */
   stringCatenate,
 } = (() => {
@@ -472,9 +502,9 @@ export const {
             !isIntegralNumber(nextCU) || nextCU < 0 || nextCU > 0xFFFF
           ) {
             // The code unit is not an integral number between 0 and
-            // 0xFFFF.
+            // 0xFFFF; this is an error.
             throw new RangeError(
-              `Piscēs: Code unit out of range: ${nextCU}.`,
+              `${PISCĒS}: Code unit out of range: ${nextCU}.`,
             );
           } else {
             // The code unit is acceptable.
@@ -491,7 +521,7 @@ export const {
 /**
  * Returns the codepoint at the provided position in the string
  * representation of the provided value according to the algorithm of
- * `String::codePointAt`.
+ * `String::codePointAt´.
  */
 export const getCodepoint = createCallableFunction(
   stringPrototype.codePointAt,
@@ -501,7 +531,7 @@ export const getCodepoint = createCallableFunction(
 /**
  * Returns the index of the first occurrence of the search string in
  * the string representation of the provided value according to the
- * algorithm of `String::indexOf`.
+ * algorithm of `String::indexOf´.
  */
 export const getFirstSubstringIndex = createCallableFunction(
   stringPrototype.indexOf,
@@ -511,7 +541,7 @@ export const getFirstSubstringIndex = createCallableFunction(
 /**
  * Returns the index of the last occurrence of the search string in the
  * string representation of the provided value according to the
- * algorithm of `String::lastIndexOf`.
+ * algorithm of `String::lastIndexOf´.
  */
 export const getLastSubstringIndex = createCallableFunction(
   stringPrototype.lastIndexOf,
@@ -522,10 +552,11 @@ export const getLastSubstringIndex = createCallableFunction(
 export const isArrayIndexString = ($) => {
   const value = canonicalNumericIndexString($);
   if (value !== UNDEFINED) {
-    // The provided value is a canonical numeric index string; return
-    // whether it is in range for array indices.
-    return sameValue(value, 0) ||
-      value === toLength(value) && value > 0 && value < -1 >>> 0;
+    // The provided value is a canonical numeric index string.
+    //
+    // Return whether it is in range for array indices.
+    return sameValue(value, 0)
+      || value === toLength(value) && value > 0 && value < -1 >>> 0;
   } else {
     // The provided value is not a canonical numeric index string.
     return false;
@@ -536,10 +567,11 @@ export const isArrayIndexString = ($) => {
 export const isIntegerIndexString = ($) => {
   const value = canonicalNumericIndexString($);
   if (value !== UNDEFINED) {
-    // The provided value is a canonical numeric index string; return
-    // whether it is in range for integer indices.
-    return sameValue(value, 0) ||
-      value === toLength(value) && value > 0;
+    // The provided value is a canonical numeric index string.
+    //
+    // Return whether it is in range for integer indices.
+    return sameValue(value, 0)
+      || value === toLength(value) && value > 0;
   } else {
     // The provided value is not a canonical numeric index string.
     return false;
@@ -549,7 +581,7 @@ export const isIntegerIndexString = ($) => {
 /**
  * Returns the result of joining the provided iterable.
  *
- * If no separator is provided, it defaults to ",".
+ * If no separator is provided, it defaults to `","´.
  *
  * If a value is nullish, it will be stringified as the empty string.
  */
@@ -568,7 +600,7 @@ export const join = (() => {
  * Returns a string created from the raw value of the tagged template
  * literal.
  *
- * ※ This is effectively an alias for `String.raw`.
+ * ※ This is effectively an alias for `String.raw´.
  */
 export const rawString = createArrowFunction(String.raw, {
   name: "rawString",
@@ -577,7 +609,7 @@ export const rawString = createArrowFunction(String.raw, {
 /**
  * Returns a string created from the provided codepoints.
  *
- * ※ This is effectively an alias for `String.fromCodePoint`.
+ * ※ This is effectively an alias for `String.fromCodePoint´.
  *
  * ☡ This function throws an error if provided with an argument which
  * is not an integral number from 0 to 10FFFF₁₆ inclusive.
@@ -613,7 +645,7 @@ export const splitOnCommas = ($) =>
 /**
  * Returns whether the string representation of the provided value ends
  * with the provided search string according to the algorithm of
- * `String::endsWith`.
+ * `String::endsWith´.
  */
 export const stringEndsWith = createCallableFunction(
   stringPrototype.endsWith,
@@ -623,7 +655,7 @@ export const stringEndsWith = createCallableFunction(
 /**
  * Returns whether the string representation of the provided value
  * contains the provided search string according to the algorithm of
- * `String::includes`.
+ * `String::includes´.
  */
 export const stringIncludes = createCallableFunction(
   stringPrototype.includes,
@@ -633,7 +665,7 @@ export const stringIncludes = createCallableFunction(
 /**
  * Returns the result of matching the string representation of the
  * provided value with the provided matcher according to the algorithm
- * of `String::match`.
+ * of `String::match´.
  */
 export const stringMatch = createCallableFunction(
   stringPrototype.match,
@@ -643,7 +675,7 @@ export const stringMatch = createCallableFunction(
 /**
  * Returns the result of matching the string representation of the
  * provided value with the provided matcher according to the algorithm
- * of `String::matchAll`.
+ * of `String::matchAll´.
  */
 export const stringMatchAll = createCallableFunction(
   stringPrototype.matchAll,
@@ -652,7 +684,7 @@ export const stringMatchAll = createCallableFunction(
 
 /**
  * Returns the normalized form of the string representation of the
- * provided value according to the algorithm of `String::normalize`.
+ * provided value according to the algorithm of `String::normalize´.
  */
 export const stringNormalize = createCallableFunction(
   stringPrototype.normalize,
@@ -662,7 +694,7 @@ export const stringNormalize = createCallableFunction(
 /**
  * Returns the result of padding the end of the string representation
  * of the provided value padded until it is the desired length
- * according to the algorithm of `String::padEnd`.
+ * according to the algorithm of `String::padEnd´.
  */
 export const stringPadEnd = createCallableFunction(
   stringPrototype.padEnd,
@@ -672,7 +704,7 @@ export const stringPadEnd = createCallableFunction(
 /**
  * Returns the result of padding the start of the string representation
  * of the provided value padded until it is the desired length
- * according to the algorithm of `String::padStart`.
+ * according to the algorithm of `String::padStart´.
  */
 export const stringPadStart = createCallableFunction(
   stringPrototype.padStart,
@@ -682,7 +714,7 @@ export const stringPadStart = createCallableFunction(
 /**
  * Returns the result of repeating the string representation of the
  * provided value the provided number of times according to the
- * algorithm of `String::repeat`.
+ * algorithm of `String::repeat´.
  */
 export const stringRepeat = createCallableFunction(
   stringPrototype.repeat,
@@ -692,7 +724,7 @@ export const stringRepeat = createCallableFunction(
 /**
  * Returns the result of replacing the string representation of the
  * provided value with the provided replacement, using the provided
- * matcher and according to the algorithm of `String::replace`.
+ * matcher and according to the algorithm of `String::replace´.
  */
 export const stringReplace = createCallableFunction(
   stringPrototype.replace,
@@ -702,7 +734,7 @@ export const stringReplace = createCallableFunction(
 /**
  * Returns the result of replacing the string representation of the
  * provided value with the provided replacement, using the provided
- * matcher and according to the algorithm of `String::replaceAll`.
+ * matcher and according to the algorithm of `String::replaceAll´.
  */
 export const stringReplaceAll = createCallableFunction(
   stringPrototype.replaceAll,
@@ -712,7 +744,7 @@ export const stringReplaceAll = createCallableFunction(
 /**
  * Returns the result of searching the string representation of the
  * provided value using the provided matcher and according to the
- * algorithm of `String::search`.
+ * algorithm of `String::search´.
  */
 export const stringSearch = createCallableFunction(
   stringPrototype.search,
@@ -721,7 +753,7 @@ export const stringSearch = createCallableFunction(
 
 /**
  * Returns a slice of the string representation of the provided value
- * according to the algorithm of `String::slice`.
+ * according to the algorithm of `String::slice´.
  */
 export const stringSlice = createCallableFunction(
   stringPrototype.slice,
@@ -731,7 +763,7 @@ export const stringSlice = createCallableFunction(
 /**
  * Returns the result of splitting of the string representation of the
  * provided value on the provided separator according to the algorithm
- * of `String::split`.
+ * of `String::split´.
  */
 export const stringSplit = createCallableFunction(
   stringPrototype.split,
@@ -741,7 +773,7 @@ export const stringSplit = createCallableFunction(
 /**
  * Returns whether the string representation of the provided value
  * starts with the provided search string according to the algorithm of
- * `String::startsWith`.
+ * `String::startsWith´.
  */
 export const stringStartsWith = createCallableFunction(
   stringPrototype.startsWith,
@@ -751,10 +783,10 @@ export const stringStartsWith = createCallableFunction(
 /**
  * Returns the value of the provided string.
  *
- * ※ This is effectively an alias for the `String::valueOf`.
+ * ※ This is effectively an alias for the `String::valueOf´.
  *
  * ☡ This function throws if the provided argument is not a string and
- * does not have a `[[StringData]]` slot.
+ * does not have a `[[StringData]]´ slot.
  */
 export const stringValue = createCallableFunction(
   stringPrototype.valueOf,
@@ -784,7 +816,7 @@ export const stripLeadingAndTrailingAsciiWhitespace = ($) =>
 
 /**
  * Returns a substring of the string representation of the provided
- * value according to the algorithm of `String::substring`.
+ * value according to the algorithm of `String::substring´.
  */
 export const substring = createCallableFunction(
   stringPrototype.substring,
index ee0e2097328535d6cbd1af583152d62ae74062b2..147e109c6ee692b07cf9f7dfb21d5a2118fe2293 100644 (file)
@@ -1,11 +1,14 @@
-// ♓🌟 Piscēs ∷ string.test.js
-// ====================================================================
-//
-// Copyright © 2022–2023 Lady [@ Lady’s Computer].
-//
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
+// SPDX-FileCopyrightText: 2022, 2023, 2025 Lady <https://www.ladys.computer/about/#lady>
+// SPDX-License-Identifier: MPL-2.0
+/**
+ * ⁌ ♓🧩 Piscēs ∷ string.test.js
+ *
+ * Copyright © 2022–2023, 2025 Lady [@ Ladys Computer].
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
+ */
 
 import {
   assert,
@@ -75,7 +78,11 @@ describe("Matcher", () => {
     assert(new Matcher(/(?:)/u));
   });
 
-  it("[[Construct]] throws with a non·unicode regular expression first argument", () => {
+  it("[[Construct]] accepts a unicode sets regular expression first argument", () => {
+    assert(new Matcher(/(?:)/v));
+  });
+
+  it("[[Construct]] throws with a non·unicode·aware regular expression first argument", () => {
     assertThrows(() => new Matcher(/(?:)/));
   });
 
@@ -125,7 +132,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/(?:)/u).dotAll, false);
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -137,7 +144,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -200,6 +207,11 @@ describe("Matcher", () => {
       );
     });
 
+    it("[[Construct]] throws an error", () => {
+      const matcher = new Matcher("");
+      assertThrows(() => new matcher.exec());
+    });
+
     describe(".length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(Matcher.prototype.exec.length, 1);
@@ -222,7 +234,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/(?:)/u).global, false);
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -234,7 +246,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -256,7 +268,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/(?:)/u).hasIndices, false);
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -268,7 +280,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -290,7 +302,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/(?:)/u).ignoreCase, false);
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -302,7 +314,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -324,7 +336,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/(?:)/u).multiline, false);
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -336,7 +348,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -355,7 +367,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/.*/su).source, ".*");
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -367,7 +379,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -389,7 +401,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/(?:)/u).sticky, false);
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -401,7 +413,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -418,6 +430,26 @@ describe("Matcher", () => {
     it("[[Call]] returns the string source", () => {
       assertStrictEquals(new Matcher(/(?:)/u).toString(), "/(?:)/u");
     });
+
+    it("[[Construct]] throws an error", () => {
+      const matcher = new Matcher("");
+      assertThrows(() => new matcher.toString());
+    });
+
+    describe(".length", () => {
+      it("[[Get]] returns the correct length", () => {
+        assertStrictEquals(Matcher.prototype.toString.length, 0);
+      });
+    });
+
+    describe(".name", () => {
+      it("[[Get]] returns the correct name", () => {
+        assertStrictEquals(
+          Matcher.prototype.toString.name,
+          "toString",
+        );
+      });
+    });
   });
 
   describe("::unicode", () => {
@@ -425,7 +457,7 @@ describe("Matcher", () => {
       assertStrictEquals(new Matcher(/(?:)/u).unicode, true);
     });
 
-    describe(".length", () => {
+    describe("[[GetOwnProperty]].get.length", () => {
       it("[[Get]] returns the correct length", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -437,7 +469,7 @@ describe("Matcher", () => {
       });
     });
 
-    describe(".name", () => {
+    describe("[[GetOwnProperty]].get.name", () => {
       it("[[Get]] returns the correct name", () => {
         assertStrictEquals(
           Object.getOwnPropertyDescriptor(
@@ -450,6 +482,36 @@ describe("Matcher", () => {
     });
   });
 
+  describe("::unicodeSets", () => {
+    it("[[Get]] returns true when the unicode sets flag is present", () => {
+      assertStrictEquals(new Matcher(/(?:)/v).unicodeSets, true);
+    });
+
+    describe("[[GetOwnProperty]].get.length", () => {
+      it("[[Get]] returns the correct length", () => {
+        assertStrictEquals(
+          Object.getOwnPropertyDescriptor(
+            Matcher.prototype,
+            "unicodeSets",
+          ).get.length,
+          0,
+        );
+      });
+    });
+
+    describe("[[GetOwnProperty]].get.name", () => {
+      it("[[Get]] returns the correct name", () => {
+        assertStrictEquals(
+          Object.getOwnPropertyDescriptor(
+            Matcher.prototype,
+            "unicodeSets",
+          ).get.name,
+          "get unicodeSets",
+        );
+      });
+    });
+  });
+
   describe("~", () => {
     it("[[Call]] returns true for a complete match", () => {
       assertStrictEquals(new Matcher("")(""), true);
@@ -491,6 +553,11 @@ describe("Matcher", () => {
         false,
       );
     });
+
+    it("[[Construct]] throws an error", () => {
+      const matcher = new Matcher("");
+      assertThrows(() => new matcher(""));
+    });
   });
 
   describe("~lastIndex", () => {
@@ -1708,8 +1775,8 @@ describe("stringReplace", () => {
         "very success full",
         /([sc]+)[ue]?/g,
         (...$s) =>
-          `${$s[0].length}`.repeat($s[1].length) +
-          $s[0].substring($s[1].length),
+          `${$s[0].length}`.repeat($s[1].length)
+          $s[0].substring($s[1].length),
       ),
       "very 2u33e22 full",
     );
@@ -1743,8 +1810,8 @@ describe("stringReplaceAll", () => {
         "very success full",
         /([sc]+)[ue]?/g,
         (...$s) =>
-          `${$s[0].length}`.repeat($s[1].length) +
-          $s[0].substring($s[1].length),
+          `${$s[0].length}`.repeat($s[1].length)
+          $s[0].substring($s[1].length),
       ),
       "very 2u33e22 full",
     );
This page took 0.465952 seconds and 4 git commands to generate.