@@ -1051,7 +1051,7 @@ namespace Sass {
1051
1051
1052
1052
Expression* Parser::parse_comma_list ()
1053
1053
{
1054
- if (peek < alternatives <
1054
+ if (peek_css < alternatives <
1055
1055
// exactly<'!'>,
1056
1056
// exactly<':'>,
1057
1057
exactly<' ;' >,
@@ -1063,14 +1063,14 @@ namespace Sass {
1063
1063
{ return new (ctx.mem ) List (pstate, 0 ); }
1064
1064
Expression* list1 = parse_space_list ();
1065
1065
// if it's a singleton, return it directly; don't wrap it
1066
- if (!peek < exactly<' ,' > >(position)) return list1;
1066
+ if (!peek_css < exactly<' ,' > >(position)) return list1;
1067
1067
1068
1068
List* comma_list = new (ctx.mem ) List (pstate, 2 , List::COMMA);
1069
1069
(*comma_list) << list1;
1070
1070
1071
- while (lex < exactly<' ,' > >())
1071
+ while (lex_css < exactly<' ,' > >())
1072
1072
{
1073
- if (peek < alternatives <
1073
+ if (peek_css < alternatives <
1074
1074
// exactly<'!'>,
1075
1075
exactly<' ;' >,
1076
1076
exactly<' }' >,
@@ -1091,7 +1091,7 @@ namespace Sass {
1091
1091
{
1092
1092
Expression* disj1 = parse_disjunction ();
1093
1093
// if it's a singleton, return it directly; don't wrap it
1094
- if (peek < alternatives <
1094
+ if (peek_css < alternatives <
1095
1095
// exactly<'!'>,
1096
1096
exactly<' ;' >,
1097
1097
exactly<' }' >,
@@ -1108,7 +1108,7 @@ namespace Sass {
1108
1108
List* space_list = new (ctx.mem ) List (pstate, 2 , List::SPACE);
1109
1109
(*space_list) << disj1;
1110
1110
1111
- while (!(peek < alternatives <
1111
+ while (!(peek_css < alternatives <
1112
1112
// exactly<'!'>,
1113
1113
exactly<' ;' >,
1114
1114
exactly<' }' >,
@@ -1229,9 +1229,9 @@ namespace Sass {
1229
1229
1230
1230
Expression* Parser::parse_factor ()
1231
1231
{
1232
- if (lex < exactly<' (' > >()) {
1232
+ if (lex_css < exactly<' (' > >()) {
1233
1233
Expression* value = parse_map ();
1234
- if (!lex < exactly<' )' > >()) error (" unclosed parenthesis" , pstate);
1234
+ if (!lex_css < exactly<' )' > >()) error (" unclosed parenthesis" , pstate);
1235
1235
value->is_delayed (false );
1236
1236
// make sure wrapped lists and division expressions are non-delayed within parentheses
1237
1237
if (value->concrete_type () == Expression::LIST) {
0 commit comments