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 57cb27a commit dd9e8a0Copy full SHA for dd9e8a0
src/eval.cpp
@@ -797,6 +797,11 @@ namespace Sass {
797
Env* env = environment();
798
if (!env->has(full_name)) {
799
if (!env->has("*[f]")) {
800
+ for (Argument* arg : args->elements()) {
801
+ if (List* ls = dynamic_cast<List*>(arg->value())) {
802
+ if (ls->size() == 0) error("() isn't a valid CSS value.", c->pstate());
803
+ }
804
805
args = static_cast<Arguments*>(args->perform(this));
806
Function_Call* lit = SASS_MEMORY_NEW(ctx.mem, Function_Call,
807
c->pstate(),
0 commit comments