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 d48c520 commit 6579d82Copy full SHA for 6579d82
src/dotty/tools/dotc/core/NameOps.scala
@@ -259,7 +259,7 @@ object NameOps {
259
}
260
261
262
- val methodTags: Seq[Name] = (methodTargs zip methodTargsNames).sortBy(_._2).map(x => typeToTag(x._1))
+ val methodTags: Seq[Name] = (methodTargs zip methodTargsNames).map(x => typeToTag(x._1))
263
val classTags: Seq[Name] = (classTargs zip classTargsNames).sortBy(_._2).map(x => typeToTag(x._1))
264
265
name.fromName(name ++ nme.specializedTypeNames.prefix ++
0 commit comments