@lezer/generator
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -122,6 +122,5 @@ export declare class Node { | ||
export declare class NameExpression extends Expression { | ||
readonly namespace: Identifier | null; | ||
readonly id: Identifier; | ||
readonly args: readonly Expression[]; | ||
constructor(start: number, namespace: Identifier | null, id: Identifier, args: readonly Expression[]); | ||
constructor(start: number, id: Identifier, args: readonly Expression[]); | ||
toString(): string; | ||
@@ -197,2 +196,11 @@ eq(other: NameExpression): boolean; | ||
} | ||
export declare const CharClasses: { | ||
[name: string]: [number, number][]; | ||
}; | ||
export declare class CharClass extends Expression { | ||
readonly type: string; | ||
constructor(start: number, type: string); | ||
toString(): string; | ||
eq(expr: CharClass): boolean; | ||
} | ||
export declare function exprEq(a: Expression, b: Expression): boolean; | ||
@@ -199,0 +207,0 @@ export declare function exprsEq(a: readonly Expression[], b: readonly Expression[]): boolean; |
{ | ||
"name": "@lezer/generator", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Parser generator for the incremental lezer parser", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13013
518516