Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vmchale committed Sep 7, 2024
1 parent 4c161cf commit 3356689
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
{-# LANGUAGE OverloadedStrings #-}
module Parser ( parse
, parseWithMax
, parseWithInitCtx
, parseWithCtx
, parseLibWithCtx
, ParseError (..)
Expand Down Expand Up @@ -389,9 +388,6 @@ parseWithMax :: T.Text -> Either (ParseError AlexPosn) (Int, File)
parseWithMax = fmap (first fst3) . runParse parseF
where fst3 (x, _, _) = x

parseWithInitCtx :: T.Text -> Either (ParseError AlexPosn) (AlexUserState, File)
parseWithInitCtx bsl = parseWithCtx bsl alexInitUserState

parseWithCtx :: T.Text -> AlexUserState -> Either (ParseError AlexPosn) (AlexUserState, File)
parseWithCtx = parseWithInitSt parseF

Expand Down

0 comments on commit 3356689

Please sign in to comment.