Skip to content

Commit 6e670ef

Browse files
authoredOct 24, 2022
Insert explicit type arguments where types could not be inferred. (#1813)
1 parent a65e504 commit 6e670ef

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎lib/src/functions/color.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ final global = UnmodifiableListView([
220220
]);
221221

222222
/// The Sass color module.
223-
final module = BuiltInModule("color", functions: [
223+
final module = BuiltInModule("color", functions: <Callable>[
224224
// ### RGB
225225
_red, _green, _blue, _mix,
226226

‎lib/src/functions/list.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final global = UnmodifiableListView([
1818
]);
1919

2020
/// The Sass list module.
21-
final module = BuiltInModule("list", functions: [
21+
final module = BuiltInModule("list", functions: <Callable>[
2222
_length, _nth, _setNth, _join, _append, _zip, _index, _isBracketed, //
2323
_separator, _slash
2424
]);

‎lib/src/functions/map.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final global = UnmodifiableListView([
2323
]);
2424

2525
/// The Sass map module.
26-
final module = BuiltInModule("map", functions: [
26+
final module = BuiltInModule("map", functions: <Callable>[
2727
_get,
2828
_set,
2929
_merge,

‎lib/src/functions/math.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ final global = UnmodifiableListView([
2222
]);
2323

2424
/// The Sass math module.
25-
final module = BuiltInModule("math", functions: [
25+
final module = BuiltInModule("math", functions: <Callable>[
2626
_abs, _acos, _asin, _atan, _atan2, _ceil, _clamp, _cos, _compatible, //
2727
_floor, _hypot, _isUnitless, _log, _max, _min, _percentage, _pow, //
2828
_randomFunction, _round, _sin, _sqrt, _tan, _unit, _div

‎lib/src/functions/selector.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ final global = UnmodifiableListView([
2727
]);
2828

2929
/// The Sass selector module.
30-
final module = BuiltInModule("selector", functions: [
30+
final module = BuiltInModule("selector", functions: <Callable>[
3131
_isSuperselector,
3232
_simpleSelectors,
3333
_parse,

‎lib/src/functions/string.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ final global = UnmodifiableListView([
2929
]);
3030

3131
/// The Sass string module.
32-
final module = BuiltInModule("string", functions: [
32+
final module = BuiltInModule("string", functions: <Callable>[
3333
_unquote, _quote, _toUpperCase, _toLowerCase, _length, _insert, _index, //
3434
_slice, _uniqueId,
3535
]);

0 commit comments

Comments
 (0)
Please sign in to comment.