Skip to content

Commit 64cc529

Browse files
committed
Reformat
1 parent ec3d0dd commit 64cc529

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

lib/src/callable/built_in.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,5 @@ class BuiltInCallable implements Callable, AsyncBuiltInCallable {
8585
}
8686

8787
/// Returns a copy of this callable with the given [name].
88-
BuiltInCallable withName(String name) =>
89-
BuiltInCallable._(name, _overloads);
88+
BuiltInCallable withName(String name) => BuiltInCallable._(name, _overloads);
9089
}

lib/src/value/number.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,7 @@ class SassNumber extends Value implements ext.SassNumber {
382382
var result = _coerceUnits(other, operation);
383383
return SassNumber.withUnits(result,
384384
numeratorUnits: hasUnits ? numeratorUnits : other.numeratorUnits,
385-
denominatorUnits:
386-
hasUnits ? denominatorUnits : other.denominatorUnits);
385+
denominatorUnits: hasUnits ? denominatorUnits : other.denominatorUnits);
387386
}
388387

389388
/// Converts [other]'s value to be compatible with this number's, and calls

lib/src/visitor/evaluate.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// DO NOT EDIT. This file was generated from async_evaluate.dart.
66
// See tool/grind/synchronize.dart for details.
77
//
8-
// Checksum: 63ce60ba47ac04b49e0a3edbe9038fb13b037e64
8+
// Checksum: 5067d0c02ede55ebe0ac609b47b6f8a7cb922511
99
//
1010
// ignore_for_file: unused_import
1111

0 commit comments

Comments
 (0)