Skip to content

Commit 60352c2

Browse files
committed
one more transform that might is necesarry
1 parent a08f667 commit 60352c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

effekt/shared/src/main/scala/effekt/core/ArityRaising.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ object ArityRaising extends Phase[CoreTransformed, CoreTransformed] {
173173
}
174174

175175
case Stmt.App(callee, targs, vargs, appBargs) =>
176-
Stmt.App(callee, targs, vargs map transform, appBargs map transform)
176+
Stmt.App(transform(callee), targs, vargs map transform, appBargs map transform)
177177
case Stmt.Def(id, block, rest) =>
178178
Stmt.Def(id, transform(block), transform(rest))
179179
case Stmt.Let(id, binding, rest) =>

0 commit comments

Comments
 (0)