homunculus
Advanced tools
Comparing version 0.7.3 to 0.7.4
{ | ||
"name": "homunculus", | ||
"version": "0.7.3", | ||
"version": "0.7.4", | ||
"description": "A lexer&parser by Javascript", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
@@ -859,2 +859,9 @@ var IParser = require('../Parser'); | ||
); | ||
while(this.look && this.look.content() == 'case') { | ||
node.add( | ||
this.match('case'), | ||
this.expr(), | ||
this.match(':') | ||
); | ||
} | ||
while(this.look && this.look.content() != '}') { | ||
@@ -861,0 +868,0 @@ node.add(this.stmt(yYield)); |
@@ -408,2 +408,9 @@ var IParser = require('../Parser'); | ||
); | ||
while(this.look && this.look.content() == 'case') { | ||
node.add( | ||
this.match('case'), | ||
this.expr(), | ||
this.match(':') | ||
); | ||
} | ||
while(this.look && this.look.content() != '}') { | ||
@@ -410,0 +417,0 @@ node.add(this.stmt()); |
@@ -859,2 +859,9 @@ define(function(require, exports, module) {var IParser = require('../Parser'); | ||
); | ||
while(this.look && this.look.content() == 'case') { | ||
node.add( | ||
this.match('case'), | ||
this.expr(), | ||
this.match(':') | ||
); | ||
} | ||
while(this.look && this.look.content() != '}') { | ||
@@ -861,0 +868,0 @@ node.add(this.stmt(yYield)); |
@@ -408,2 +408,9 @@ define(function(require, exports, module) {var IParser = require('../Parser'); | ||
); | ||
while(this.look && this.look.content() == 'case') { | ||
node.add( | ||
this.match('case'), | ||
this.expr(), | ||
this.match(':') | ||
); | ||
} | ||
while(this.look && this.look.content() != '}') { | ||
@@ -410,0 +417,0 @@ node.add(this.stmt()); |
Sorry, the diff of this file is not supported yet
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
568285
16739