Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Dec 19, 2019
1 parent ec3d0dd commit 64cc529
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions lib/src/callable/built_in.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,5 @@ class BuiltInCallable implements Callable, AsyncBuiltInCallable {
}

/// Returns a copy of this callable with the given [name].
BuiltInCallable withName(String name) =>
BuiltInCallable._(name, _overloads);
BuiltInCallable withName(String name) => BuiltInCallable._(name, _overloads);
}
3 changes: 1 addition & 2 deletions lib/src/value/number.dart
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,7 @@ class SassNumber extends Value implements ext.SassNumber {
var result = _coerceUnits(other, operation);
return SassNumber.withUnits(result,
numeratorUnits: hasUnits ? numeratorUnits : other.numeratorUnits,
denominatorUnits:
hasUnits ? denominatorUnits : other.denominatorUnits);
denominatorUnits: hasUnits ? denominatorUnits : other.denominatorUnits);
}

/// Converts [other]'s value to be compatible with this number's, and calls
Expand Down
2 changes: 1 addition & 1 deletion lib/src/visitor/evaluate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// DO NOT EDIT. This file was generated from async_evaluate.dart.
// See tool/grind/synchronize.dart for details.
//
// Checksum: 63ce60ba47ac04b49e0a3edbe9038fb13b037e64
// Checksum: 5067d0c02ede55ebe0ac609b47b6f8a7cb922511
//
// ignore_for_file: unused_import

Expand Down

0 comments on commit 64cc529

Please sign in to comment.