java-parser
Advanced tools
Comparing version 0.7.0 to 0.7.1
{ | ||
"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 @@ ]); |
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
169359
6129