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 7edbe0f commit 7446c65Copy full SHA for 7446c65
library/src/scala/quoted/matching/Lambda.scala
@@ -22,7 +22,7 @@ object Lambda {
22
case AppliedType(_, functionArguments) => functionArguments.init.asInstanceOf[List[Type]]
23
qctx.tasty.internal.lambdaExtractor(expr.unseal, argTypes).map { fn =>
24
def f(args: Tuple.Map[Args, Expr]): Expr[Res] =
25
- fn(args.toArray.map(_.asInstanceOf[Expr[Any]].unseal).toList).seal.asInstanceOf[Expr[Res]]
+ fn(args.toArray.toList.map(_.asInstanceOf[Expr[Any]].unseal)).seal.asInstanceOf[Expr[Res]]
26
tg.untupled(f)
27
}
28
0 commit comments