Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Language/PureScript/Make/ExternsDiff.hs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ externsDeclarationToRef moduleName = \case
--
P.EDInstance cn n args kinds types constraints _ _ _ _ ->
Just
( TypeInstanceRef n (qualified cn) (mapMaybe myType types)
( TypeInstanceRef n (qualified cn) (foldMap (P.everythingOnTypes (<>) (maybeToList . myType)) types)
, maybe mempty constraintsDeps constraints <> instanceArgsDeps args <> foldMap typeDeps kinds
)
where
Expand Down
Loading