Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lezer/generator

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lezer/generator - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

12

dist/node.d.ts

@@ -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;

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc