Skip to content

Commit 6579d82

Browse files
committed
Remove sorting of method args names when mangling for specialisation
1 parent d48c520 commit 6579d82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotty/tools/dotc/core/NameOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ object NameOps {
259259
}
260260
}
261261

262-
val methodTags: Seq[Name] = (methodTargs zip methodTargsNames).sortBy(_._2).map(x => typeToTag(x._1))
262+
val methodTags: Seq[Name] = (methodTargs zip methodTargsNames).map(x => typeToTag(x._1))
263263
val classTags: Seq[Name] = (classTargs zip classTargsNames).sortBy(_._2).map(x => typeToTag(x._1))
264264

265265
name.fromName(name ++ nme.specializedTypeNames.prefix ++

0 commit comments

Comments
 (0)