sassdoc icon indicating copy to clipboard operation
sassdoc copied to clipboard

Bug: Same dependency/dependee listed multiple times

Open reneroth opened this issue 7 years ago • 1 comments

... if used more than once in a function/mixin

Stupid example:

@function double-value($value) {
  @return $value * 2;
}

@mixin doubledouble($attribute, $value) {
    #{$attribute}: double-value($value) + double-value($value);
}

Will state that doubledouble requires double-value 2x

I will try to look into this as soon as I find the time.

reneroth avatar Nov 05 '18 14:11 reneroth

just fyi the linked closed PR is a functional fix for this :)

reneroth avatar Oct 20 '23 05:10 reneroth