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

antlr4-c3

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

antlr4-c3 - npm Package Compare versions

Comparing version 3.2.5 to 3.3.0

lib/index.mjs

8

lib/src/ClassSymbol.d.ts

@@ -18,13 +18,13 @@ import { IType, ReferenceKind, TypeKind } from "./types.js";

/**
* @param includeInherited Not used.
* @param _includeInherited Not used.
*
* @returns a list of all methods.
*/
getMethods(includeInherited?: boolean): Promise<MethodSymbol[]>;
getMethods(_includeInherited?: boolean): Promise<MethodSymbol[]>;
/**
* @param includeInherited Not used.
* @param _includeInherited Not used.
*
* @returns all fields.
*/
getFields(includeInherited?: boolean): Promise<FieldSymbol[]>;
getFields(_includeInherited?: boolean): Promise<FieldSymbol[]>;
}
{
"name": "antlr4-c3",
"version": "3.2.5",
"version": "3.3.0",
"description": "A code completion core implementation for ANTLR4 based parsers",

@@ -19,10 +19,12 @@ "author": "Mike Lischke",

"type": "module",
"main": "./lib/index.js",
"main": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run generate && npm run test",
"build": "tsc && npm run esbuild",
"prepublishOnly": "npm run build && npm run generate && npm run test",
"test-coverage": "npm run test --coverage",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --no-coverage",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --no-coverage",
"generate": "antlr4ng -Dlanguage=TypeScript tests/CPP14.g4 tests/Expr.g4 tests/Whitebox.g4 -no-listener -no-visitor -o tests/generated -Xexact-output-dir",
"eslint": "eslint ."
"eslint": "eslint .",
"esbuild": "esbuild ./index.ts --bundle --outfile=lib/index.mjs --format=esm --sourcemap=external"
},

@@ -36,2 +38,3 @@ "devDependencies": {

"antlr4ng-cli": "1.0.2",
"esbuild": "0.19.3",
"eslint": "8.48.0",

@@ -38,0 +41,0 @@ "eslint-plugin-import": "2.28.1",

@@ -6,4 +6,2 @@ [![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/mike-lischke/antlr4-c3/nodejs.yml?style=for-the-badge&color=green&logo=github)](https://github.com/mike-lischke/antlr4-c3/actions/workflows/nodejs.yml)

# antlr4-c3 The ANTLR4 Code Completion Core

@@ -227,3 +225,7 @@

### 3.2.4
### 3.3.0
Now using esbuild for building the package.
### 3.2.4 - 3.2.5
- Updated c3 code.

@@ -230,0 +232,0 @@ - Updated Jest settings to run ESM + TS tests.

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