gi-javascriptcore 0.2.12.14 → 0.2.12.15
raw patch · 5 files changed
+16/−2 lines, 5 filesdep ~haskell-gi-basePVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
Dependency ranges changed: haskell-gi-base
API changes (from Hackage documentation)
+ GI.JavaScriptCore.Structs.GlobalContext: instance WrappedPtr GlobalContext
+ GI.JavaScriptCore.Structs.Value: instance WrappedPtr Value
Files
- GI/JavaScriptCore/Structs/GlobalContext.hs +6/−0
- GI/JavaScriptCore/Structs/GlobalContext.hs-boot +1/−0
- GI/JavaScriptCore/Structs/Value.hs +6/−0
- GI/JavaScriptCore/Structs/Value.hs-boot +1/−0
- gi-javascriptcore.cabal +2/−2
GI/JavaScriptCore/Structs/GlobalContext.hs view
@@ -27,6 +27,12 @@ import GI.JavaScriptCore.Callbacks newtype GlobalContext = GlobalContext (ForeignPtr GlobalContext)+-- XXX Wrapping a foreign struct/union with no known destructor or size, leak?+instance WrappedPtr GlobalContext where+ wrappedPtrCalloc = return nullPtr+ wrappedPtrCopy = return+ wrappedPtrFree = Nothing+ noGlobalContext :: Maybe GlobalContext noGlobalContext = Nothing
GI/JavaScriptCore/Structs/GlobalContext.hs-boot view
@@ -8,3 +8,4 @@ import qualified Data.Map as Map newtype GlobalContext = GlobalContext (ForeignPtr GlobalContext)+instance WrappedPtr GlobalContext where
GI/JavaScriptCore/Structs/Value.hs view
@@ -27,6 +27,12 @@ import GI.JavaScriptCore.Callbacks newtype Value = Value (ForeignPtr Value)+-- XXX Wrapping a foreign struct/union with no known destructor or size, leak?+instance WrappedPtr Value where+ wrappedPtrCalloc = return nullPtr+ wrappedPtrCopy = return+ wrappedPtrFree = Nothing+ noValue :: Maybe Value noValue = Nothing
GI/JavaScriptCore/Structs/Value.hs-boot view
@@ -8,3 +8,4 @@ import qualified Data.Map as Map newtype Value = Value (ForeignPtr Value)+instance WrappedPtr Value where
gi-javascriptcore.cabal view
@@ -1,6 +1,6 @@ -- Autogenerated, do not edit. name: gi-javascriptcore-version: 0.2.12.14+version: 0.2.12.15 synopsis: JavaScriptCore bindings description: Bindings for JavaScriptCore, autogenerated by haskell-gi. homepage: https://github.com/haskell-gi/haskell-gi@@ -25,7 +25,7 @@ GI.JavaScriptCore.Structs.Value pkgconfig-depends: javascriptcoregtk-4.0 >= 2.12 build-depends: base >= 4.7 && <5,- haskell-gi-base >= 0.14 && < 1,+ haskell-gi-base >= 0.15 && < 1, bytestring >= 0.10, containers >= 0.5, text >= 1.0,