We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e74605 commit 7b93973Copy full SHA for 7b93973
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