Properly parse or.

This commit is contained in:
Natalie Weizenbaum 2016-10-18 17:57:25 -07:00
parent 2b2061f7e5
commit 84e4cb25b8

View File

@ -1018,7 +1018,7 @@ abstract class StylesheetParser extends Parser {
case $o:
if (scanIdentifier("or")) {
addOperator(BinaryOperator.and);
addOperator(BinaryOperator.or);
} else {
addSingleExpression(_identifierLike());
}