Skip to content

Commit

Permalink
Insert explicit type arguments where types could not be inferred. (#1813
Browse files Browse the repository at this point in the history
)
  • Loading branch information
srawlins committed Oct 24, 2022
1 parent a65e504 commit 6e670ef
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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

0 comments on commit 6e670ef

Please sign in to comment.