File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Notable changes to this project are documented in this file. The format is based
66
77Breaking changes:
88- Migrate FFI to ES modules (#130 by @kl0tl and @JordanMartinez )
9+ - Replaced polymorphic proxies with monomorphic ` Proxy ` (#132 by @JordanMartinez )
910- Make ` frequency ` use ` NonEmptyArray ` (#131 by @JordanMartinez )
1011
1112 Now ` oneOf ` and ` frequency ` both use ` NonEmptyArray ` rather than ` NonEmptyList ` .
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ genericCoarbitrary x = coarbitrary (from x)
279279-- | A helper typeclass to implement `Arbitrary` for records.
280280class ArbitraryRowList :: RL.RowList Type -> Row Type -> Constraint
281281class ArbitraryRowList list row | list -> row where
282- arbitraryRecord :: forall rlproxy . rlproxy list -> Gen (Record row )
282+ arbitraryRecord :: Proxy list -> Gen (Record row )
283283
284284instance arbitraryRowListNil :: ArbitraryRowList RL.Nil () where
285285 arbitraryRecord _ = pure {}
You can’t perform that action at this time.
0 commit comments