Revamping to matrix style

This commit is contained in:
2026-02-16 16:37:35 -05:00
parent 71852ec99a
commit 9d0e3938e4
14958 changed files with 2089572 additions and 114 deletions

28
node_modules/regex/dist/cjs/subclass.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
export const emulationGroupMarker: "$E$";
/**
Works the same as JavaScript's native `RegExp` constructor in all contexts, but automatically
adjusts matches and subpattern indices (with flag `d`) to account for injected emulation groups.
*/
export class RegExpSubclass extends RegExp {
/**
@param {string | RegExpSubclass} expression
@param {string} [flags]
@param {{useEmulationGroups: boolean;}} [options]
*/
constructor(expression: string | RegExpSubclass, flags?: string, options?: {
useEmulationGroups: boolean;
});
/**
@private
@type {Array<{
exclude: boolean;
transfer?: number;
}> | undefined}
*/
private _captureMap;
/**
@private
@type {Record<number, string> | undefined}
*/
private _namesByIndex;
}