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

Replace undefined with more descriptive error #262

Merged
merged 4 commits into from
Dec 30, 2024
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
1 change: 1 addition & 0 deletions alex.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ extra-source-files:
tests/issue_119.x
tests/issue_141.x
tests/issue_197.x
tests/issue_262.x
tests/strict_text_typeclass.x
tests/posn_typeclass_strict_text.x
tests/tokens_monadUserState_strict_text.x
Expand Down
7 changes: 6 additions & 1 deletion data/AlexTemplate.hs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,12 @@ data AlexReturn a

-- alexScan :: AlexInput -> StartCode -> AlexReturn a
alexScan input__ IBOX(sc)
= alexScanUser undefined input__ IBOX(sc)
= alexScanUser (error "alex rule requiring context was invoked by alexScan; use alexScanUser instead?") input__ IBOX(sc)

-- If the generated alexScan/alexScanUser functions are called multiple times
-- in the same file, alexScanUser gets broken out into a separate function and
-- increases memory usage. Make sure GHC inlines this function and optimizes it.
{-# INLINE alexScanUser #-}

alexScanUser user__ input__ IBOX(sc)
= case alex_scan_tkn user__ input__ ILIT(0) input__ sc AlexNone of
Expand Down
1 change: 1 addition & 0 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ TESTS = \
issue_119.x \
issue_141.x \
issue_197.x \
issue_262.x \
monad_typeclass.x \
monad_typeclass_bytestring.x \
monadUserState_typeclass.x \
Expand Down
28 changes: 28 additions & 0 deletions tests/issue_262.x
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
-- https://github.com/haskell/alex/pull/262
-- https://gitlab.haskell.org/ghc/ghc/-/issues/25609
--
-- Error happens when using alexScan with a lexer that
-- inspects the context.

{-# LANGUAGE ScopedTypeVariables #-}

import Control.Exception
import Data.List (isInfixOf)
}

%wrapper "basic"

:-
.* / { \state _ _ _ -> state == 'x' } { id }

{
main :: IO ()
main = do
result <- try $ evaluate $ alexScan ('\n', [], "") 0 `seq` ()
case result of
Left (e :: SomeException)
| "use alexScanUser instead" `isInfixOf` show e
-> pure ()
_ -> error $ "Got unexpected result: " ++ show result
}
Loading