Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
19
Frontend-Learner/node_modules/eslint-plugin-regexp/dist/utils/partial-parser.d.ts
generated
vendored
Normal file
19
Frontend-Learner/node_modules/eslint-plugin-regexp/dist/utils/partial-parser.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import type { AST } from "@eslint-community/regexpp";
|
||||
import type { Expression, NoParent } from "refa";
|
||||
import { JS } from "refa";
|
||||
export type NestedAlternative = AST.Alternative | AST.CharacterClassElement | AST.StringAlternative;
|
||||
export declare class PartialParser {
|
||||
private readonly parser;
|
||||
private readonly options;
|
||||
private readonly nativeCache;
|
||||
constructor(parser: JS.Parser, options?: JS.ParseOptions);
|
||||
parse(node: JS.ParsableElement, alternative: NestedAlternative): NoParent<Expression>;
|
||||
private parseAlternatives;
|
||||
private parseAlternative;
|
||||
private parseStringAlternatives;
|
||||
private parseStringAlternative;
|
||||
private parseElement;
|
||||
private parseCharacterClass;
|
||||
private nativeParseElement;
|
||||
private nativeParseElementUncached;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue