Skip to content

Commit 7b93973

Browse files
committed
fixes flutter#16
1 parent 7e74605 commit 7b93973

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/builder.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ class Entry implements Comparable {
7777
/// location in the target file. We sort primarily by the target offset
7878
/// because source map files are encoded by printing each mapping in order as
7979
/// they appear in the target file.
80-
int compareTo(Entry other) {
80+
int compareTo(_other) {
81+
Entry other = _other as Entry;
8182
int res = target.compareTo(other.target);
8283
if (res != 0) return res;
8384
res = source.sourceUrl.toString().compareTo(

0 commit comments

Comments
 (0)