[project @ 2001-03-27 14:05:09 by simonpj]
authorsimonpj <unknown>
Tue, 27 Mar 2001 14:05:09 +0000 (14:05 +0000)
committersimonpj <unknown>
Tue, 27 Mar 2001 14:05:09 +0000 (14:05 +0000)
Print minimal import operators correctly

ghc/compiler/hsSyn/HsExpr.lhs
ghc/compiler/hsSyn/HsImpExp.lhs

index cf3a5f3..a2b703f 100644 (file)
@@ -13,9 +13,10 @@ import HsBinds               ( HsBinds(..), nullBinds )
 import HsLit           ( HsLit, HsOverLit )
 import BasicTypes      ( Fixity(..) )
 import HsTypes         ( HsType )
+import HsImpExp                ( isOperator )
 
 -- others:
-import Name            ( Name, isLexSym )
+import Name            ( Name )
 import Outputable      
 import PprType         ( pprParendType )
 import Type            ( Type )
@@ -388,14 +389,6 @@ pprParendExpr expr
       _                            -> parens pp_as_was
 \end{code}
 
-\begin{code}
-isOperator :: Outputable a => a -> Bool
-isOperator v = isLexSym (_PK_ (showSDocUnqual (ppr v)))
-       -- We use (showSDoc (ppr v)), rather than isSymOcc (getOccName v) simply so
-       -- that we don't need NamedThing in the context of all these functions.
-       -- Gruesome, but simple.
-\end{code}
-
 %************************************************************************
 %*                                                                     *
 \subsection{Record binds}
index b47abf4..e483914 100644 (file)
@@ -8,6 +8,7 @@ module HsImpExp where
 
 #include "HsVersions.h"
 
+import Name            ( isLexSym )
 import Module          ( ModuleName, WhereFrom )
 import Outputable
 import SrcLoc          ( SrcLoc )
@@ -84,12 +85,23 @@ ieNames (IEModuleContents _   ) = []
 
 \begin{code}
 instance (Outputable name) => Outputable (IE name) where
-    ppr (IEVar         var)    = ppr var
+    ppr (IEVar         var)    = ppr_var var
     ppr (IEThingAbs    thing)  = ppr thing
     ppr (IEThingAll    thing)  = hcat [ppr thing, text "(..)"]
     ppr (IEThingWith thing withs)
-       = ppr thing <> parens (fsep (punctuate comma (map ppr withs)))
+       = ppr thing <> parens (fsep (punctuate comma (map ppr_var withs)))
     ppr (IEModuleContents mod)
        = ptext SLIT("module") <+> ppr mod
+
+ppr_var v | isOperator v = parens (ppr v)
+         | otherwise    = ppr v
+\end{code}
+
+\begin{code}
+isOperator :: Outputable a => a -> Bool
+isOperator v = isLexSym (_PK_ (showSDocUnqual (ppr v)))
+       -- We use (showSDoc (ppr v)), rather than isSymOcc (getOccName v) simply so
+       -- that we don't need NamedThing in the context of all these functions.
+       -- Gruesome, but simple.
 \end{code}