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

java-parser

Package Overview
Dependencies
Maintainers
6
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

java-parser - npm Package Compare versions

Comparing version 0.7.0 to 0.7.1

4

package.json
{
"name": "java-parser",
"version": "0.7.0",
"version": "0.7.1",
"description": "Java Parser in JavaScript",

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

},
"gitHead": "7cf83bececc20e6c658a8b07df5d8dd056a3711f"
"gitHead": "c4eb95e1400c2da5e363e02e08329d7cc8a32071"
}

@@ -77,3 +77,5 @@ "use strict";

DEF: [
{ ALT: () => $.SUBRULE($.statementWithoutTrailingSubstatement) },
{
ALT: () => $.SUBRULE($.statementWithoutTrailingSubstatement)
},
{ ALT: () => $.SUBRULE($.labeledStatement) },

@@ -80,0 +82,0 @@ // Spec deviation: combined "IfThenStatement" and "IfThenElseStatement"

@@ -120,3 +120,6 @@ "use strict";

nextRuleType <= classBodyTypes.semiColon,
ALT: () => $.SUBRULE($.classMemberDeclaration, { ARGS: [nextRuleType] })
ALT: () =>
$.SUBRULE($.classMemberDeclaration, {
ARGS: [nextRuleType]
})
},

@@ -527,3 +530,5 @@ // no gate needed for the initializers because these are LL(1) rules.

$.OR([
{ ALT: () => $.SUBRULE($.unqualifiedExplicitConstructorInvocation) },
{
ALT: () => $.SUBRULE($.unqualifiedExplicitConstructorInvocation)
},
{ ALT: () => $.SUBRULE($.qualifiedExplicitConstructorInvocation) }

@@ -530,0 +535,0 @@ ]);

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