rename register to declare
This commit is contained in:
parent
a3604491e9
commit
1fb6822259
@ -502,7 +502,7 @@ fn invert(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassR
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("hsl", Builtin::new(hsl));
|
||||
f.insert("hsla", Builtin::new(hsla));
|
||||
f.insert("hue", Builtin::new(hue));
|
||||
|
@ -7,9 +7,9 @@ mod opacity;
|
||||
mod other;
|
||||
mod rgb;
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
hsl::register(f);
|
||||
opacity::register(f);
|
||||
other::register(f);
|
||||
rgb::register(f);
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
hsl::declare(f);
|
||||
opacity::declare(f);
|
||||
other::declare(f);
|
||||
rgb::declare(f);
|
||||
}
|
||||
|
@ -154,7 +154,7 @@ fn fade_out(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> Sas
|
||||
Ok(Value::Color(Box::new(color.fade_out(amount))))
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("alpha", Builtin::new(alpha));
|
||||
f.insert("opacity", Builtin::new(opacity));
|
||||
f.insert("opacify", Builtin::new(opacify));
|
||||
|
@ -349,7 +349,7 @@ fn ie_hex_str(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> S
|
||||
Ok(Value::Ident(color.to_ie_hex_str(), QuoteKind::None))
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("change-color", Builtin::new(change_color));
|
||||
f.insert("adjust-color", Builtin::new(adjust_color));
|
||||
f.insert("scale-color", Builtin::new(scale_color));
|
||||
|
@ -434,7 +434,7 @@ fn mix(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResu
|
||||
Ok(Value::Color(Box::new(color1.mix(&color2, weight))))
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("rgb", Builtin::new(rgb));
|
||||
f.insert("rgba", Builtin::new(rgba));
|
||||
f.insert("red", Builtin::new(red));
|
||||
|
@ -316,7 +316,7 @@ fn zip(args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<V
|
||||
Ok(Value::List(result, ListSeparator::Comma, Brackets::None))
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("length", Builtin::new(length));
|
||||
f.insert("nth", Builtin::new(nth));
|
||||
f.insert("list-separator", Builtin::new(list_separator));
|
||||
|
@ -129,7 +129,7 @@ fn map_remove(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> S
|
||||
Ok(Value::Map(map))
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("map-get", Builtin::new(map_get));
|
||||
f.insert("map-has-key", Builtin::new(map_has_key));
|
||||
f.insert("map-keys", Builtin::new(map_keys));
|
||||
|
@ -189,7 +189,7 @@ fn random(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassR
|
||||
))
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("percentage", Builtin::new(percentage));
|
||||
f.insert("round", Builtin::new(round));
|
||||
f.insert("ceil", Builtin::new(ceil));
|
||||
|
@ -232,7 +232,7 @@ fn call(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassRes
|
||||
func.call(args.decrement(), scope, super_selector)
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("if", Builtin::new(if_));
|
||||
f.insert("feature-exists", Builtin::new(feature_exists));
|
||||
f.insert("unit", Builtin::new(unit));
|
||||
|
@ -45,11 +45,11 @@ impl PartialEq for Builtin {
|
||||
|
||||
pub(crate) static GLOBAL_FUNCTIONS: Lazy<GlobalFunctionMap> = Lazy::new(|| {
|
||||
let mut m = HashMap::new();
|
||||
color::register(&mut m);
|
||||
list::register(&mut m);
|
||||
map::register(&mut m);
|
||||
math::register(&mut m);
|
||||
meta::register(&mut m);
|
||||
string::register(&mut m);
|
||||
color::declare(&mut m);
|
||||
list::declare(&mut m);
|
||||
map::declare(&mut m);
|
||||
math::declare(&mut m);
|
||||
meta::declare(&mut m);
|
||||
string::declare(&mut m);
|
||||
m
|
||||
});
|
||||
|
@ -357,7 +357,7 @@ fn unique_id(args: CallArgs, _: &Scope, _: &Selector) -> SassResult<Value> {
|
||||
Ok(Value::Ident(string, QuoteKind::None))
|
||||
}
|
||||
|
||||
pub(crate) fn register(f: &mut GlobalFunctionMap) {
|
||||
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
|
||||
f.insert("to-upper-case", Builtin::new(to_upper_case));
|
||||
f.insert("to-lower-case", Builtin::new(to_lower_case));
|
||||
f.insert("str-length", Builtin::new(str_length));
|
||||
|
Loading…
x
Reference in New Issue
Block a user