@@ -32,7 +32,7 @@ namespace Sass {
32
32
}
33
33
}
34
34
35
- Signature global_variable_exists_sig = " global-variable-exists($name)" ;
35
+ Signature global_variable_exists_sig = " global-variable-exists($name, $module: null )" ;
36
36
BUILT_IN (global_variable_exists)
37
37
{
38
38
std::string s = unquote (ARGSTRC (" $name" )->value ());
@@ -45,7 +45,7 @@ namespace Sass {
45
45
}
46
46
}
47
47
48
- Signature function_exists_sig = " function-exists($name)" ;
48
+ Signature function_exists_sig = " function-exists($name, $module: null )" ;
49
49
BUILT_IN (function_exists)
50
50
{
51
51
String_Constant* ss = Cast<String_Constant>(env[" $name" ]);
@@ -63,7 +63,7 @@ namespace Sass {
63
63
}
64
64
}
65
65
66
- Signature mixin_exists_sig = " mixin-exists($name)" ;
66
+ Signature mixin_exists_sig = " mixin-exists($name, $module: null )" ;
67
67
BUILT_IN (mixin_exists)
68
68
{
69
69
std::string s = unquote (ARGSTRC (" $name" )->value ());
@@ -208,7 +208,7 @@ namespace Sass {
208
208
return SASS_MEMORY_NEW (Boolean, pstate, d_env.has_lexical (" @content[m]" ));
209
209
}
210
210
211
- Signature get_function_sig = " get-function($name, $css: false)" ;
211
+ Signature get_function_sig = " get-function($name, $css: false, $module: null )" ;
212
212
BUILT_IN (get_function)
213
213
{
214
214
String_Constant* ss = Cast<String_Constant>(env[" $name" ]);
0 commit comments