Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Insert explicit type arguments where types could not be inferred. #1813

Merged
merged 1 commit into from Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/src/functions/color.dart
Expand Up @@ -220,7 +220,7 @@ final global = UnmodifiableListView([
]);

/// The Sass color module.
final module = BuiltInModule("color", functions: [
final module = BuiltInModule("color", functions: <Callable>[
// ### RGB
_red, _green, _blue, _mix,

Expand Down
2 changes: 1 addition & 1 deletion lib/src/functions/list.dart
Expand Up @@ -18,7 +18,7 @@ final global = UnmodifiableListView([
]);

/// The Sass list module.
final module = BuiltInModule("list", functions: [
final module = BuiltInModule("list", functions: <Callable>[
_length, _nth, _setNth, _join, _append, _zip, _index, _isBracketed, //
_separator, _slash
]);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/functions/map.dart
Expand Up @@ -23,7 +23,7 @@ final global = UnmodifiableListView([
]);

/// The Sass map module.
final module = BuiltInModule("map", functions: [
final module = BuiltInModule("map", functions: <Callable>[
_get,
_set,
_merge,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/functions/math.dart
Expand Up @@ -22,7 +22,7 @@ final global = UnmodifiableListView([
]);

/// The Sass math module.
final module = BuiltInModule("math", functions: [
final module = BuiltInModule("math", functions: <Callable>[
_abs, _acos, _asin, _atan, _atan2, _ceil, _clamp, _cos, _compatible, //
_floor, _hypot, _isUnitless, _log, _max, _min, _percentage, _pow, //
_randomFunction, _round, _sin, _sqrt, _tan, _unit, _div
Expand Down
2 changes: 1 addition & 1 deletion lib/src/functions/selector.dart
Expand Up @@ -27,7 +27,7 @@ final global = UnmodifiableListView([
]);

/// The Sass selector module.
final module = BuiltInModule("selector", functions: [
final module = BuiltInModule("selector", functions: <Callable>[
_isSuperselector,
_simpleSelectors,
_parse,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/functions/string.dart
Expand Up @@ -29,7 +29,7 @@ final global = UnmodifiableListView([
]);

/// The Sass string module.
final module = BuiltInModule("string", functions: [
final module = BuiltInModule("string", functions: <Callable>[
_unquote, _quote, _toUpperCase, _toLowerCase, _length, _insert, _index, //
_slice, _uniqueId,
]);
Expand Down