Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Aug 30, 2023
1 parent a697c37 commit 9a3ac5b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import izumi.distage.model.plan.ExecutableOp.ImportDependency
import izumi.functional.quasi.QuasiIO
import izumi.fundamentals.platform.language.{CodePosition, CodePositionMaterializer}

final class LocalContextImpl[F[_]: QuasiIO, A] private (
final class LocalContextImpl[F[_]: QuasiIO: TagK, A] private (
externalKeys: Set[DIKey],
parent: LocatorRef,
val plan: Plan,
Expand Down Expand Up @@ -56,7 +56,7 @@ final class LocalContextImpl[F[_]: QuasiIO, A] private (
}

object LocalContextImpl {
def empty[F[_]: QuasiIO, R](externalKeys: Set[DIKey], locatorRef: LocatorRef, subplan: Plan, impl: Functoid[F[R]]) =
def empty[F[_]: QuasiIO: TagK, R](externalKeys: Set[DIKey], locatorRef: LocatorRef, subplan: Plan, impl: Functoid[F[R]]) =
new LocalContextImpl[F, R](externalKeys, locatorRef, subplan, impl, Map.empty)

private case class LocalInstance[+T](value: T, position: CodePosition)
Expand Down

0 comments on commit 9a3ac5b

Please sign in to comment.