-
Notifications
You must be signed in to change notification settings - Fork 46
Add module hierarchy Agda2Hs.Language.Haskell
#413
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
Merged
omelkonian
merged 5 commits into
agda:master
from
HeinrichApfelmus:HeinrichApfelmus/language-haskell
Jun 3, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
92f13bb
Shrink an import in `Agda2Hs.Compile.Name`
HeinrichApfelmus 4124755
Shrink imports of `Language.Haskell.Exts`
HeinrichApfelmus e663a26
Add `Agda2Hs.Language.Haskell`
HeinrichApfelmus df6a8a6
Rename module to `Agda2Hs.Language.Haskell.Utils`
HeinrichApfelmus a60b7be
Anchor imports at `Agda2Hs.Language.Haskell`
HeinrichApfelmus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| -- | Haskell syntax, parsing, pretty printing. | ||
| -- | ||
| -- This module contains those elements of the Haskell language | ||
| -- that are needed by Agda2hs. | ||
| -- | ||
| -- We are mainly re-exporting @haskell-src-exts@. | ||
| module Agda2Hs.Language.Haskell | ||
| ( module Language.Haskell.Exts.Build | ||
| , module Language.Haskell.Exts.Comments | ||
| , module Language.Haskell.Exts.ExactPrint | ||
| , module Language.Haskell.Exts.Extension | ||
| , module Language.Haskell.Exts.Parser | ||
| , module Language.Haskell.Exts.Pretty | ||
| , module Language.Haskell.Exts.SrcLoc | ||
| , module Language.Haskell.Exts.Syntax | ||
| , module Agda2Hs.Language.Haskell.Utils | ||
| ) where | ||
|
|
||
| import Agda2Hs.Language.Haskell.Utils | ||
|
|
||
| import Language.Haskell.Exts.Comments (Comment) | ||
| import Language.Haskell.Exts.Build hiding (pApp) | ||
| import Language.Haskell.Exts.ExactPrint (exactPrint) | ||
| import Language.Haskell.Exts.Extension hiding (Strict, Lazy) | ||
| import Language.Haskell.Exts.Parser | ||
| import Language.Haskell.Exts.Pretty | ||
| import Language.Haskell.Exts.SrcLoc (SrcSpanInfo) | ||
| import Language.Haskell.Exts.Syntax |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
|
|
||
| module Agda2Hs.HsUtils where | ||
| module Agda2Hs.Language.Haskell.Utils where | ||
|
|
||
| import Control.Monad ( guard ) | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.