This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Description
LibSass's get-function() function fails if it's passed a function name that's defined only in a nested scope. For example:
.scope {
@function add-two($v) {@return $v + 2}
$_: get-function(add-two);
}
This throws:
Error: Function not found: add-two
on line 3:7 of test.scss, in function `get-function`
from line 3:7 of test.scss
>> $_: get-function(add-two);
------^