krl-parser
Advanced tools
Comparing version 0.46.0 to 0.46.1
{ | ||
"name": "krl-parser", | ||
"version": "0.46.0", | ||
"version": "0.46.1", | ||
"description": "Parse KRL source code into an AST", | ||
@@ -36,5 +36,5 @@ "main": "src/index.js", | ||
"lodash": "^4.17.4", | ||
"onchange": "^3.2.1", | ||
"onchange": "^4.1.0", | ||
"phonetic": "^0.1.1", | ||
"standard": "^11.0.1", | ||
"standard": "^12.0.1", | ||
"tape": "^4.6.0" | ||
@@ -51,3 +51,4 @@ }, | ||
"nearley": "^2.10.5" | ||
} | ||
}, | ||
"gitHead": "0a25ac43e5b62403c3b971db30306f358d6d43a4" | ||
} |
@@ -44,3 +44,3 @@ var rawToks = [ | ||
return function (value, name) { | ||
var loc = {start: nextLoc, end: nextLoc + value.length} | ||
var loc = { start: nextLoc, end: nextLoc + value.length } | ||
@@ -90,3 +90,3 @@ tokens.push({ | ||
pushTok('#{', 'CHEVRON-BEESTING-OPEN') | ||
beestingStack.push({curly_count: 0}) | ||
beestingStack.push({ curly_count: 0 }) | ||
} else if (peek === '>>') { | ||
@@ -93,0 +93,0 @@ pushTok('>>', 'CHEVRON-CLOSE') |
Sorry, the diff of this file is too big to display
112572