Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkgs/fixnum/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
possible for `IntX` (and in turn `Int64` and `Int32`) be used with methods
like `sortedBy` in the platform libraries.
- Run `dart format` with the new style.
- Improve `Int64` representation when compiling to native or Wasm.

## 1.1.1

Expand Down
4 changes: 2 additions & 2 deletions pkgs/fixnum/lib/fixnum.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

/// Signed 32- and 64-bit integer support.
///
/// The integer implementations in this library are designed to work
/// identically whether executed on the Dart VM or compiled to JavaScript.
/// The integer implementations in this library are designed to work identically
/// whether executed on the Dart VM or compiled to JavaScript or Wasm.
library;

export 'src/int32.dart';
Expand Down
2 changes: 0 additions & 2 deletions pkgs/fixnum/lib/src/int32.dart
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,6 @@ class Int32 implements IntX {
return Int32(value);
}

/// Returns [:true:] if this [Int32] has the same numeric value as the
/// given object. The argument may be an [int] or an [IntX].
@override
bool operator ==(Object other) {
if (other is Int32) {
Expand Down
Loading