Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IO.Handle as type #83

Merged
merged 2 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
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 hell.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.36.0.
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack

Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: "Chris Done"
copyright: "2023 Chris Done"
synopsis: "Haskell-based shell scripting language"
dependencies:
- base >= 4.17.2.1 && < 4.18
- base >= 4.17.2.1 && < 4.19
- haskell-src-exts
- ghc-prim
- containers
Expand Down
1 change: 1 addition & 0 deletions src/Hell.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1165,6 +1165,7 @@ supportedTypeConstructors =
("Tree", SomeTypeRep $ typeRep @Tree),
("Value", SomeTypeRep $ typeRep @Value),
("()", SomeTypeRep $ typeRep @()),
("Handle", SomeTypeRep $ typeRep @IO.Handle),

-- Internal, hidden types
("hell:Hell.NilL", SomeTypeRep $ typeRep @('NilL)),
Expand Down
Loading