Skip to content

Commit

Permalink
Derive Eq and Read for SS
Browse files Browse the repository at this point in the history
  • Loading branch information
UnkindPartition committed Jun 22, 2010
1 parent 2165b0a commit 5fb90c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Parsec.hs
Expand Up @@ -27,10 +27,10 @@ data SS = SS
, hereDocs :: I.IntMap Word
, numHereDocs :: Int
}
deriving Show
deriving (Show,Read,Eq)
type HereDocHandle = (String, Int, HereDocQuoted)
data HereDocQuoted = HereDocQuoted | HereDocNotQuoted
deriving Show
deriving (Show,Read,Eq)

-- put here-docs delimeter into the queue
-- returns unique number by which the contents of here-doc may be accessed later
Expand Down

0 comments on commit 5fb90c2

Please sign in to comment.