Skip to content

Commit

Permalink
ExprParse header simpler now
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Corson committed Mar 24, 2010
1 parent 3af7e72 commit 53e4789
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/Lang/Php/Ast/ExprParse.hs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{-# LANGUAGE DeriveDataTypeable, TemplateHaskell, FlexibleInstances,
FlexibleContexts, OverlappingInstances #-}


module Lang.Php.Ast.ExprParse (LVal(..), RVal(..)) where
{-# LANGUAGE FlexibleContexts, FlexibleInstances #-}
module Lang.Php.Ast.ExprParse where

import Control.Monad.Identity
import Lang.Php.Ast.ArgList
Expand Down Expand Up @@ -590,4 +587,3 @@ instance Parse Xml where
instance Parse XmlLitOrExpr where
parse = (tokLBraceP >> XmlExpr <$> parse <* tokRBraceP) <|>
XmlLit <$> many1 (satisfy (`notElem` "<{"))

0 comments on commit 53e4789

Please sign in to comment.