We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51e3022 commit c5a436dCopy full SHA for c5a436d
pkgs/source_maps/lib/builder.dart
@@ -77,7 +77,8 @@ class Entry implements Comparable {
77
/// location in the target file. We sort primarily by the target offset
78
/// because source map files are encoded by printing each mapping in order as
79
/// they appear in the target file.
80
- int compareTo(Entry other) {
+ int compareTo(_other) {
81
+ Entry other = _other as Entry;
82
int res = target.compareTo(other.target);
83
if (res != 0) return res;
84
res = source.sourceUrl.toString().compareTo(
0 commit comments