postcss-selector-parser
Advanced tools
Comparing version
@@ -0,1 +1,6 @@ | ||
# 2.2.2 | ||
* No longer hangs on an unescaped semicolon; instead the parser will throw | ||
an exception for these cases. | ||
# 2.2.1 | ||
@@ -2,0 +7,0 @@ |
@@ -237,2 +237,6 @@ 'use strict'; | ||
Parser.prototype.missingBackslash = function missingBackslash() { | ||
return this.error('Expected a backslash preceding the semicolon.'); | ||
}; | ||
Parser.prototype.missingParenthesis = function missingParenthesis() { | ||
@@ -552,2 +556,5 @@ return this.error('Expected opening parenthesis.'); | ||
break; | ||
case ';': | ||
this.missingBackslash(); | ||
break; | ||
case ',': | ||
@@ -554,0 +561,0 @@ this.comma(); |
{ | ||
"name": "postcss-selector-parser", | ||
"version": "2.2.1", | ||
"version": "2.2.2", | ||
"devDependencies": { | ||
@@ -5,0 +5,0 @@ "ava": "^0.16.0", |
91265
0.39%1562
0.39%