coffee-lex
Advanced tools
Comparing version 1.4.5 to 1.4.6
@@ -1505,3 +1505,7 @@ (function (global, factory) { | ||
} else if (consume(IDENTIFIER_PATTERN)) { | ||
var prev = locations[locations.length - 1]; | ||
var prevLocationIndex = locations.length - 1; | ||
while (prevLocationIndex > 0 && locations[prevLocationIndex].type === NEWLINE) { | ||
prevLocationIndex--; | ||
} | ||
var prev = locations[prevLocationIndex]; | ||
if (prev && (prev.type === DOT || prev.type === PROTO || prev.type === AT)) { | ||
@@ -1508,0 +1512,0 @@ setType(IDENTIFIER); |
@@ -58,3 +58,3 @@ { | ||
}, | ||
"version": "1.4.5" | ||
"version": "1.4.6" | ||
} |
Sorry, the diff of this file is not supported yet
114218
3167