Add ArbitraryFilesCache

This commit is contained in:
Jeroen Engels 2023-05-30 23:49:52 +02:00
parent c1b7f06790
commit c4aef02f8f

View File

@ -307,6 +307,7 @@ import Elm.Syntax.Node as Node exposing (Node(..))
import Elm.Syntax.Pattern exposing (Pattern)
import Elm.Syntax.Range as Range exposing (Range)
import Json.Encode as Encode
import Review.Cache.ArbitraryFile as ArbitraryFile
import Review.Cache.ContentHash exposing (ContentHash)
import Review.Cache.ContextHash as ContextHash exposing (ComparableContextHash, ContextHash)
import Review.Cache.EndAnalysis as EndAnalysisCache
@ -4166,6 +4167,10 @@ type alias ProjectFileCache projectContext =
ProjectFileCache.Entry (Error {}) projectContext
type alias ArbitraryFilesCache projectContext =
ArbitraryFile.Entry (Error {}) projectContext
type alias FinalProjectEvaluationCache projectContext =
EndAnalysisCache.Entry (List (Error {})) projectContext