Skip to content

Commit d6795ca

Browse files
oderskyhamzaremmal
authored andcommitted
Streamline deepCaptureSet
1 parent 0811f44 commit d6795ca

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/src/dotty/tools/dotc/cc/CaptureOps.scala

+1-3
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,7 @@ extension (tp: Type)
232232
case tp @ ReachCapability(_) =>
233233
tp.singletonCaptureSet
234234
case ReadOnlyCapability(ref) =>
235-
val refDcs = ref.deepCaptureSet(includeTypevars)
236-
if refDcs.isConst then CaptureSet(refDcs.elems.map(_.readOnly))
237-
else refDcs // this case should not happen for correct programs
235+
ref.deepCaptureSet(includeTypevars).readOnly
238236
case tp: SingletonCaptureRef if tp.isTrackableRef =>
239237
tp.reach.singletonCaptureSet
240238
case _ =>

0 commit comments

Comments
 (0)