X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fparser%2FParserCoreUtils.hs;h=2c88aa79e356176379744cdc5cad1ecff5d080ad;hp=e32038bf3b9aceb0d6fdacefac5bd135c5a161d4;hb=9ba922ee06b048774d7a82964867ff768a78126e;hpb=ad94d40948668032189ad22a0ad741ac1f645f50 diff --git a/compiler/parser/ParserCoreUtils.hs b/compiler/parser/ParserCoreUtils.hs index e32038b..2c88aa7 100644 --- a/compiler/parser/ParserCoreUtils.hs +++ b/compiler/parser/ParserCoreUtils.hs @@ -1,13 +1,6 @@ -{-# OPTIONS -w #-} --- The above warning supression flag is a temporary kludge. --- While working on this module you are encouraged to remove it and fix --- any warnings in the module. See --- http://hackage.haskell.org/trac/ghc/wiki/CodingStyle#Warnings --- for details - module ParserCoreUtils where -import IO +import System.IO data ParseResult a = OkP a | FailP String type P a = String -> Int -> ParseResult a