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.
2 parents f22497b + 3197fe5 commit 3a5460bCopy full SHA for 3a5460b
compiler/src/dotty/tools/dotc/core/Decorators.scala
@@ -157,7 +157,7 @@ object Decorators {
157
names exists { name =>
158
name == "all" || {
159
val strippedName = name.stripSuffix("+")
160
- val logNextPhase = name ne strippedName
+ val logNextPhase = name != strippedName
161
phase.phaseName.startsWith(strippedName) ||
162
(logNextPhase && phase.prev.phaseName.startsWith(strippedName))
163
}
0 commit comments