You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When call is passed a maps as the $args param it is being auto expanded. This should only happen if the map value is followed by ... i.e. call('foo', $my-map...) vs call('foo', $my-map). Originally reported #1128 (comment)
@functionfoo($map) {
@return$map;
}
@debug(call(foo, (this: is, my: map));)
Ruby Sass + Libsass 3.1.0
test.scss:20 DEBUG: (this:is,my: map)
Libsass 3.2.0-beta.6
Error: function foo has no parameter named $this
on line 20 of test.scss
>>@debug(call(foo, (this: is, my: map)));
------------------------------------^
When
call
is passed a maps as the$args
param it is being auto expanded. This should only happen if the map value is followed by...
i.e.call('foo', $my-map...)
vscall('foo', $my-map)
. Originally reported #1128 (comment)Ruby Sass + Libsass 3.1.0
Libsass 3.2.0-beta.6
Specs added sass/sass-spec#342
The text was updated successfully, but these errors were encountered: