Skip to content

Fix #269 and rewrite DFAMin #270

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
merged 20 commits into from
Apr 5, 2025
Merged
Show file tree
Hide file tree
Changes from 19 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
3 changes: 3 additions & 0 deletions alex.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ extra-source-files:
tests/issue_141.x
tests/issue_197.x
tests/issue_262.x
tests/issue_269_part1.x
tests/issue_269_part2.x
tests/strict_text_typeclass.x
tests/posn_typeclass_strict_text.x
tests/tokens_monadUserState_strict_text.x
Expand All @@ -113,6 +115,7 @@ executable alex
default-language:
Haskell2010
default-extensions:
DeriveFunctor
PatternSynonyms
ScopedTypeVariables
TupleSections
Expand Down
2 changes: 1 addition & 1 deletion src/AbsSyn.hs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ data RightContext r
= NoRightContext
| RightContextRExp r
| RightContextCode Code
deriving (Eq,Ord)
deriving (Eq, Ord, Functor)

instance Show RECtx where
showsPrec _ (RECtx scs _ r rctx code) =
Expand Down
Loading
Loading