sass-site/source/documentation/snippets/call-impl-status.liquid
Jonny Gerig Meyer 1532553ef2
Merge branch 'main' into builtin-modules
* main:
  review
  Use JSON args for compatibility tag
  typo
  typo
  Use kwargs for {% compatibility %} tag.
  clearer example line breaks
  add missing @use
  silence sass warnings
  Do not autoformat md files
  combine more markdown blocks
  indentation for remainder of docs
  indentation for syntax docs
  indentation for style-rules docs
  indentation for cli docs
  indentation for breaking-changes
  Strip indentation from more paired shortcodes.
  Try out standard indentation
2023-06-02 17:36:10 -04:00

12 lines
624 B
Plaintext

{% compatibility 'dart: true', 'libsass: "3.5.0"', 'ruby: "3.5.0"', 'feature: "Argument Type"' %}
In older versions of LibSass and Ruby Sass, the [`call()` function][] took a
string representing a function's name. This was changed to take a function
value instead in preparation for a new module system where functions are no
longer global and so a given name may not always refer to the same function.
[`call()` function]: /documentation/modules/meta#call
Passing a string to `call()` still works in all implementations, but it's
deprecated and will be disallowed in future versions.
{% endcompatibility %}