homunculus
Advanced tools
Comparing version 0.7.2 to 0.7.3
{ | ||
"name": "homunculus", | ||
"version": "0.7.2", | ||
"version": "0.7.3", | ||
"description": "A lexer&parser by Javascript", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
@@ -633,3 +633,7 @@ var IParser = require('../Parser'); | ||
node.add(k); | ||
name = k.first().token().content().toLowerCase(); | ||
var first = k.first(); | ||
if(first.token().type() == Token.HACK) { | ||
first = first.next(); | ||
} | ||
name = first.token().content().toLowerCase(); | ||
node.add(this.match(':')); | ||
@@ -636,0 +640,0 @@ node.add(this.value(name, noC)); |
@@ -633,3 +633,7 @@ define(function(require, exports, module) {var IParser = require('../Parser'); | ||
node.add(k); | ||
name = k.first().token().content().toLowerCase(); | ||
var first = k.first(); | ||
if(first.token().type() == Token.HACK) { | ||
first = first.next(); | ||
} | ||
name = first.token().content().toLowerCase(); | ||
node.add(this.match(':')); | ||
@@ -636,0 +640,0 @@ node.add(this.value(name, noC)); |
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
16711
564734