-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #568 from hildjj/typescript-5.6
Update to TypeScript 5.6. Begin generating .d.ts for parser.js.
- Loading branch information
Showing
7 changed files
with
394 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
/** Provides information pointing to a location within a source. */ | ||
export interface Location { | ||
/** Line in the parsed source (1-based). */ | ||
readonly line: number; | ||
/** Column in the parsed source (1-based). */ | ||
readonly column: number; | ||
/** Offset in the parsed source (0-based). */ | ||
readonly offset: number; | ||
} | ||
|
||
/** | ||
* Anything that can successfully be converted to a string with `String()` | ||
* so that it can be used in error messages. | ||
* | ||
* The GrammarLocation class in Peggy is a good example. | ||
*/ | ||
export interface GrammarSourceObject { | ||
readonly toString: () => string; | ||
|
||
/** | ||
* If specified, allows the grammar source to be embedded in a larger file | ||
* at some offset. | ||
*/ | ||
readonly offset?: undefined | ((loc: Location) => Location); | ||
} | ||
|
||
/** | ||
* Most often, you just use a string with the file name. | ||
*/ | ||
export type GrammarSource = string | GrammarSourceObject; | ||
|
||
/** The `start` and `end` position's of an object within the source. */ | ||
export interface LocationRange { | ||
/** | ||
* A string or object that was supplied to the `parse()` call as the | ||
* `grammarSource` option. | ||
*/ | ||
readonly source: GrammarSource; | ||
/** Position at the beginning of the expression. */ | ||
readonly start: Location; | ||
/** Position after the end of the expression. */ | ||
readonly end: Location; | ||
} | ||
|
||
/** | ||
* Expected a literal string, like `"foo"i`. | ||
*/ | ||
export interface LiteralExpectation { | ||
readonly type: "literal"; | ||
readonly text: string; | ||
readonly ignoreCase: boolean; | ||
} | ||
|
||
/** | ||
* Range of characters, like `a-z` | ||
*/ | ||
export type ClassRange = [ | ||
start: string, | ||
end: string, | ||
] | ||
|
||
export interface ClassParts extends Array<string | ClassRange> { | ||
} | ||
|
||
/** | ||
* Expected a class, such as `[^acd-gz]i` | ||
*/ | ||
export interface ClassExpectation { | ||
readonly type: "class"; | ||
readonly parts: ClassParts; | ||
readonly inverted: boolean; | ||
readonly ignoreCase: boolean; | ||
} | ||
|
||
/** | ||
* Expected any character, with `.` | ||
*/ | ||
export interface AnyExpectation { | ||
readonly type: "any"; | ||
} | ||
|
||
/** | ||
* Expected the end of input. | ||
*/ | ||
export interface EndExpectation { | ||
readonly type: "end"; | ||
} | ||
|
||
/** | ||
* Expected some other input. These are specified with a rule's | ||
* "human-readable name", or with the `expected(message, location)` | ||
* function. | ||
*/ | ||
export interface OtherExpectation { | ||
readonly type: "other"; | ||
readonly description: string; | ||
} | ||
|
||
export type Expectation = | ||
| AnyExpectation | ||
| ClassExpectation | ||
| EndExpectation | ||
| LiteralExpectation | ||
| OtherExpectation; | ||
|
||
/** | ||
* Pass an array of these into `SyntaxError.prototype.format()` | ||
*/ | ||
export interface SourceText { | ||
/** | ||
* Identifier of an input that was used as a grammarSource in parse(). | ||
*/ | ||
readonly source: GrammarSource; | ||
/** Source text of the input. */ | ||
readonly text: string; | ||
} | ||
|
||
export declare class SyntaxError extends Error { | ||
/** | ||
* Constructs the human-readable message from the machine representation. | ||
* | ||
* @param expected Array of expected items, generated by the parser | ||
* @param found Any text that will appear as found in the input instead of | ||
* expected | ||
*/ | ||
static buildMessage(expected: Expectation[], found?: string | null | undefined): string; | ||
readonly message: string; | ||
readonly expected: Expectation[]; | ||
readonly found: string | null | undefined; | ||
readonly location: LocationRange; | ||
readonly name: string; | ||
constructor( | ||
message: string, | ||
expected: Expectation[], | ||
found: string | null, | ||
location: LocationRange, | ||
); | ||
|
||
/** | ||
* With good sources, generates a feature-rich error message pointing to the | ||
* error in the input. | ||
* @param sources List of {source, text} objects that map to the input. | ||
*/ | ||
format(sources: SourceText[]): string; | ||
} | ||
|
||
/** | ||
* Trace execution of the parser. | ||
*/ | ||
export interface ParserTracer { | ||
trace: (event: ParserTracerEvent) => void; | ||
} | ||
|
||
export type ParserTracerEvent | ||
= { | ||
readonly type: "rule.enter"; | ||
readonly rule: string; | ||
readonly location: LocationRange | ||
} | ||
| { | ||
readonly type: "rule.fail"; | ||
readonly rule: string; | ||
readonly location: LocationRange | ||
} | ||
| { | ||
readonly type: "rule.match"; | ||
readonly rule: string; | ||
readonly location: LocationRange | ||
/** Return value from the rule. */ | ||
readonly result: unknown; | ||
}; | ||
|
||
export type StartRuleNames = "Grammar" | "ImportsAndSource"; | ||
export interface ParseOptions<T extends StartRuleNames = "Grammar"> { | ||
/** | ||
* String or object that will be attached to the each `LocationRange` object | ||
* created by the parser. For example, this can be path to the parsed file | ||
* or even the File object. | ||
*/ | ||
readonly grammarSource?: GrammarSource; | ||
readonly startRule?: T; | ||
readonly tracer?: ParserTracer; | ||
|
||
// Internal use only: | ||
readonly peg$library?: boolean; | ||
// Internal use only: | ||
peg$currPos?: number; | ||
// Internal use only: | ||
peg$silentFails?: number; | ||
// Internal use only: | ||
peg$maxFailExpected?: Expectation[]; | ||
// Extra application-specific properties | ||
[key: string]: unknown; | ||
} | ||
|
||
export declare const StartRules: StartRuleNames[]; | ||
export declare const parse: typeof ParseFunction; | ||
|
||
// Overload of ParseFunction for each allowedStartRule | ||
|
||
declare function ParseFunction<Options extends ParseOptions<"Grammar">>( | ||
input: string, | ||
options?: Options, | ||
): import('./peg.d.ts').ast.Grammar; | ||
|
||
declare function ParseFunction<Options extends ParseOptions<"ImportsAndSource">>( | ||
input: string, | ||
options?: Options, | ||
): import('./peg.d.ts').ast.TopLevelInitializer[]; | ||
|
||
declare function ParseFunction<Options extends ParseOptions<StartRuleNames>>( | ||
input: string, | ||
options?: Options, | ||
): import('./peg.d.ts').ast.Grammar | import('./peg.d.ts').ast.TopLevelInitializer[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,14 +57,14 @@ | |
}, | ||
"devDependencies": { | ||
"@peggyjs/eslint-config": "^5.0.0", | ||
"@rollup/plugin-commonjs": "^28.0.0", | ||
"@rollup/plugin-commonjs": "^28.0.1", | ||
"@rollup/plugin-json": "^6.1.0", | ||
"@rollup/plugin-multi-entry": "^6.0.1", | ||
"@rollup/plugin-node-resolve": "^15.3.0", | ||
"@rollup/plugin-typescript": "^12.1.0", | ||
"@rollup/plugin-typescript": "^12.1.1", | ||
"@types/chai": "^4.3.11", | ||
"@types/jest": "^29.5.13", | ||
"@types/node": "^22.7.5", | ||
"@types/node": "^22.7.6", | ||
"chai": "^4.3.11", | ||
"chai-like": "^1.1.3", | ||
"copyfiles": "^2.4.1", | ||
|
@@ -79,11 +79,11 @@ | |
"rollup": "^4.24.0", | ||
"rollup-plugin-ignore": "1.0.10", | ||
"source-map": "^0.8.0-beta.0", | ||
"terser": "^5.34.1", | ||
"terser": "^5.36.0", | ||
"ts-jest": "^29.2.5", | ||
"tslib": "^2.7.0", | ||
"typescript": "5.5.4", | ||
"typescript-eslint": "8.8.1" | ||
"tslib": "^2.8.0", | ||
"typescript": "5.6.3", | ||
"typescript-eslint": "8.10.0" | ||
}, | ||
"dependencies": { | ||
"@peggyjs/from-mem": "1.3.5", | ||
|
@@ -98,7 +98,7 @@ | |
"browserslist": [ | ||
"defaults, maintained node versions, not op_mini all" | ||
], | ||
"packageManager": "[email protected].1", | ||
"packageManager": "[email protected].2", | ||
"engines": { | ||
"node": ">=18" | ||
} | ||
|
Oops, something went wrong.