Skip to content

Commit

Permalink
Better support for parsing complex ie function values
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Dec 21, 2014
1 parent 9852e41 commit 4742ae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ namespace Sass {
}
lex< exactly<'='> >();
*kwd_arg << new (ctx.mem) String_Constant(path, source_position, lexed);
if (lex< variable >()) *kwd_arg << new (ctx.mem) Variable(path, source_position, Util::normalize_underscores(lexed));
if (peek< variable >()) *kwd_arg << parse_list();
else if (lex< number >()) *kwd_arg << new (ctx.mem) Textual(path, source_position, Textual::NUMBER, Util::normalize_decimals(lexed));
else {
lex< alternatives< identifier_schema, identifier, number, hex > >();
Expand Down

0 comments on commit 4742ae4

Please sign in to comment.