We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66631c0 commit 3030315Copy full SHA for 3030315
eval.cpp
@@ -901,9 +901,9 @@ namespace Sass {
901
{
902
string acc;
903
for (size_t i = 0, L = s->length(); i < L; ++i) {
904
- if (String_Quoted* str_quoted = dynamic_cast<String_Quoted*>((*s)[i])) {
905
- if (!str_quoted->is_delayed()) str_quoted->value(string_eval_escapes(str_quoted->value()));
906
- }
+ // if (String_Quoted* str_quoted = dynamic_cast<String_Quoted*>((*s)[i])) {
+ // if (!str_quoted->is_delayed()) str_quoted->value(string_eval_escapes(str_quoted->value()));
+ // }
907
acc += interpolation((*s)[i]);
908
}
909
String_Quoted* str = new (ctx.mem) String_Quoted(s->pstate(), acc);
0 commit comments