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 b89462f commit 2d1b896Copy full SHA for 2d1b896
compiler/src/dotty/tools/dotc/core/Types.scala
@@ -4175,12 +4175,12 @@ object Types {
4175
myGround > 0
4176
4177
private[Types] def cachedIsStable(using Context): Boolean =
4178
- if myisStableRunId != ctx.runId then
+ if myIsStableRunId != ctx.runId then
4179
val res: Boolean = computeIsStable
4180
// We don't cache if the type is provisional because `Type#isStable`
4181
// calls `Type#stripTypeVar` which might return different results later.
4182
if !isProvisional then
4183
- myisStableRunId = ctx.runId
+ myIsStableRunId = ctx.runId
4184
myIsStable = res
4185
res
4186
else
0 commit comments