New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

antlr4

Package Overview
Dependencies
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

antlr4 - npm Package Compare versions

Comparing version 4.7.1 to 4.7.2

2

InputStream.js

@@ -14,3 +14,3 @@ //

function _loadString(stream, decodeToUnicodeCodePoints) {
function _loadString(stream) {
stream._index = 0;

@@ -17,0 +17,0 @@ stream.data = [];

{
"name": "antlr4",
"version": "4.7.1",
"version": "4.7.2",
"description": "JavaScript runtime for ANTLR4",

@@ -14,3 +14,3 @@ "main": "src/antlr4/index.js",

],
"license": "BSD",
"license": "BSD-3-Clause",
"bugs": {

@@ -17,0 +17,0 @@ "url": "https://github.com/antlr/antlr4/issues"

@@ -24,3 +24,3 @@ //

Recognizer.prototype.checkVersion = function(toolVersion) {
var runtimeVersion = "4.7.1";
var runtimeVersion = "4.7.2";
if (runtimeVersion!==toolVersion) {

@@ -27,0 +27,0 @@ console.log("ANTLR runtime and generated code versions disagree: "+runtimeVersion+"!="+toolVersion);

@@ -76,3 +76,7 @@ /* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.

ParseTreeVisitor.prototype.visitChildren = function(ctx) {
return this.visit(ctx.children);
if (ctx.children) {
return this.visit(ctx.children);
} else {
return null;
}
}

@@ -79,0 +83,0 @@

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