[project @ 2000-04-03 09:52:28 by simonpj]
[ghc-hetmet.git] / ghc / compiler / rename / RnBinds.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[RnBinds]{Renaming and dependency analysis of bindings}
5
6 This module does renaming and dependency analysis on value bindings in
7 the abstract syntax.  It does {\em not} do cycle-checks on class or
8 type-synonym declarations; those cannot be done at this stage because
9 they may be affected by renaming (which isn't fully worked out yet).
10
11 \begin{code}
12 module RnBinds (
13         rnTopBinds, rnTopMonoBinds,
14         rnMethodBinds, renameSigs,
15         rnBinds,
16         unknownSigErr
17    ) where
18
19 #include "HsVersions.h"
20
21 import {-# SOURCE #-} RnSource ( rnHsSigType )
22
23 import HsSyn
24 import HsBinds          ( sigsForMe, cmpHsSig, sigName, hsSigDoc )
25 import RdrHsSyn
26 import RnHsSyn
27 import RnMonad
28 import RnExpr           ( rnMatch, rnGRHSs, rnPat, checkPrecMatch )
29 import RnEnv            ( bindLocatedLocalsRn, lookupBndrRn, lookupGlobalOccRn, lookupOccRn,
30                           warnUnusedLocalBinds, mapFvRn, 
31                           FreeVars, emptyFVs, plusFV, plusFVs, unitFV, addOneFV,
32                           unknownNameErr
33                         )
34 import CmdLineOpts      ( opt_WarnMissingSigs )
35 import Digraph          ( stronglyConnComp, SCC(..) )
36 import Name             ( OccName, Name, nameOccName, mkUnboundName, isUnboundName )
37 import NameSet
38 import RdrName          ( RdrName, rdrNameOcc  )
39 import BasicTypes       ( RecFlag(..), TopLevelFlag(..) )
40 import Util             ( thenCmp, removeDups )
41 import List             ( partition )
42 import ListSetOps       ( minusList )
43 import Bag              ( bagToList )
44 import FiniteMap        ( lookupFM, listToFM )
45 import Maybe            ( isJust )
46 import Outputable
47 \end{code}
48
49 -- ToDo: Put the annotations into the monad, so that they arrive in the proper
50 -- place and can be used when complaining.
51
52 The code tree received by the function @rnBinds@ contains definitions
53 in where-clauses which are all apparently mutually recursive, but which may
54 not really depend upon each other. For example, in the top level program
55 \begin{verbatim}
56 f x = y where a = x
57               y = x
58 \end{verbatim}
59 the definitions of @a@ and @y@ do not depend on each other at all.
60 Unfortunately, the typechecker cannot always check such definitions.
61 \footnote{Mycroft, A. 1984. Polymorphic type schemes and recursive
62 definitions. In Proceedings of the International Symposium on Programming,
63 Toulouse, pp. 217-39. LNCS 167. Springer Verlag.}
64 However, the typechecker usually can check definitions in which only the
65 strongly connected components have been collected into recursive bindings.
66 This is precisely what the function @rnBinds@ does.
67
68 ToDo: deal with case where a single monobinds binds the same variable
69 twice.
70
71 The vertag tag is a unique @Int@; the tags only need to be unique
72 within one @MonoBinds@, so that unique-Int plumbing is done explicitly
73 (heavy monad machinery not needed).
74
75 \begin{code}
76 type VertexTag  = Int
77 type Cycle      = [VertexTag]
78 type Edge       = (VertexTag, VertexTag)
79 \end{code}
80
81 %************************************************************************
82 %*                                                                      *
83 %* naming conventions                                                   *
84 %*                                                                      *
85 %************************************************************************
86
87 \subsection[name-conventions]{Name conventions}
88
89 The basic algorithm involves walking over the tree and returning a tuple
90 containing the new tree plus its free variables. Some functions, such
91 as those walking polymorphic bindings (HsBinds) and qualifier lists in
92 list comprehensions (@Quals@), return the variables bound in local
93 environments. These are then used to calculate the free variables of the
94 expression evaluated in these environments.
95
96 Conventions for variable names are as follows:
97 \begin{itemize}
98 \item
99 new code is given a prime to distinguish it from the old.
100
101 \item
102 a set of variables defined in @Exp@ is written @dvExp@
103
104 \item
105 a set of variables free in @Exp@ is written @fvExp@
106 \end{itemize}
107
108 %************************************************************************
109 %*                                                                      *
110 %* analysing polymorphic bindings (HsBinds, Bind, MonoBinds)            *
111 %*                                                                      *
112 %************************************************************************
113
114 \subsubsection[dep-HsBinds]{Polymorphic bindings}
115
116 Non-recursive expressions are reconstructed without any changes at top
117 level, although their component expressions may have to be altered.
118 However, non-recursive expressions are currently not expected as
119 \Haskell{} programs, and this code should not be executed.
120
121 Monomorphic bindings contain information that is returned in a tuple
122 (a @FlatMonoBindsInfo@) containing:
123
124 \begin{enumerate}
125 \item
126 a unique @Int@ that serves as the ``vertex tag'' for this binding.
127
128 \item
129 the name of a function or the names in a pattern. These are a set
130 referred to as @dvLhs@, the defined variables of the left hand side.
131
132 \item
133 the free variables of the body. These are referred to as @fvBody@.
134
135 \item
136 the definition's actual code. This is referred to as just @code@.
137 \end{enumerate}
138
139 The function @nonRecDvFv@ returns two sets of variables. The first is
140 the set of variables defined in the set of monomorphic bindings, while the
141 second is the set of free variables in those bindings.
142
143 The set of variables defined in a non-recursive binding is just the
144 union of all of them, as @union@ removes duplicates. However, the
145 free variables in each successive set of cumulative bindings is the
146 union of those in the previous set plus those of the newest binding after
147 the defined variables of the previous set have been removed.
148
149 @rnMethodBinds@ deals only with the declarations in class and
150 instance declarations.  It expects only to see @FunMonoBind@s, and
151 it expects the global environment to contain bindings for the binders
152 (which are all class operations).
153
154 %************************************************************************
155 %*                                                                      *
156 \subsubsection{ Top-level bindings}
157 %*                                                                      *
158 %************************************************************************
159
160 @rnTopBinds@ assumes that the environment already
161 contains bindings for the binders of this particular binding.
162
163 \begin{code}
164 rnTopBinds    :: RdrNameHsBinds -> RnMS (RenamedHsBinds, FreeVars)
165
166 rnTopBinds EmptyBinds                     = returnRn (EmptyBinds, emptyFVs)
167 rnTopBinds (MonoBind bind sigs _)         = rnTopMonoBinds bind sigs
168   -- The parser doesn't produce other forms
169
170
171 rnTopMonoBinds EmptyMonoBinds sigs 
172   = returnRn (EmptyBinds, emptyFVs)
173
174 rnTopMonoBinds mbinds sigs
175  =  mapRn lookupBndrRn binder_rdr_names `thenRn` \ binder_names ->
176     renameSigs (okBindSig (mkNameSet binder_names)) sigs `thenRn` \ (siglist, sig_fvs) ->
177     let
178         type_sig_vars   = [n | Sig n _ _ <- siglist]
179         un_sigd_binders | opt_WarnMissingSigs = binder_names `minusList` type_sig_vars
180                         | otherwise           = []
181     in
182     mapRn_ (addWarnRn.missingSigWarn) un_sigd_binders   `thenRn_`
183
184     rn_mono_binds siglist mbinds                   `thenRn` \ (final_binds, bind_fvs) ->
185     returnRn (final_binds, bind_fvs `plusFV` sig_fvs)
186   where
187     binder_rdr_names = map fst (bagToList (collectMonoBinders mbinds))
188 \end{code}
189
190 %************************************************************************
191 %*                                                                      *
192 %*              Nested binds
193 %*                                                                      *
194 %************************************************************************
195
196 \subsubsection{Nested binds}
197
198 @rnMonoBinds@
199 \begin{itemize}
200 \item collects up the binders for this declaration group,
201 \item checks that they form a set
202 \item extends the environment to bind them to new local names
203 \item calls @rnMonoBinds@ to do the real work
204 \end{itemize}
205 %
206 \begin{code}
207 rnBinds       :: RdrNameHsBinds 
208               -> (RenamedHsBinds -> RnMS (result, FreeVars))
209               -> RnMS (result, FreeVars)
210
211 rnBinds EmptyBinds             thing_inside = thing_inside EmptyBinds
212 rnBinds (MonoBind bind sigs _) thing_inside = rnMonoBinds bind sigs thing_inside
213   -- the parser doesn't produce other forms
214
215
216 rnMonoBinds :: RdrNameMonoBinds 
217             -> [RdrNameSig]
218             -> (RenamedHsBinds -> RnMS (result, FreeVars))
219             -> RnMS (result, FreeVars)
220
221 rnMonoBinds EmptyMonoBinds sigs thing_inside = thing_inside EmptyBinds
222
223 rnMonoBinds mbinds sigs thing_inside -- Non-empty monobinds
224   =     -- Extract all the binders in this group,
225         -- and extend current scope, inventing new names for the new binders
226         -- This also checks that the names form a set
227     bindLocatedLocalsRn (text "a binding group") mbinders_w_srclocs
228     $ \ new_mbinders ->
229     let
230         binder_set = mkNameSet new_mbinders
231     in
232         -- Rename the signatures
233     renameSigs (okBindSig binder_set) sigs      `thenRn` \ (siglist, sig_fvs) ->
234
235         -- Report the fixity declarations in this group that 
236         -- don't refer to any of the group's binders.
237         -- Then install the fixity declarations that do apply here
238         -- Notice that they scope over thing_inside too
239     let
240         fixity_sigs = [(name,sig) | FixSig sig@(FixitySig name _ _) <- siglist ]
241     in
242     extendFixityEnv fixity_sigs $
243
244     rn_mono_binds siglist mbinds           `thenRn` \ (binds, bind_fvs) ->
245
246     -- Now do the "thing inside", and deal with the free-variable calculations
247     thing_inside binds                     `thenRn` \ (result,result_fvs) ->
248     let
249         all_fvs        = result_fvs `plusFV` bind_fvs `plusFV` sig_fvs
250         unused_binders = nameSetToList (binder_set `minusNameSet` all_fvs)
251     in
252     warnUnusedLocalBinds unused_binders `thenRn_`
253     returnRn (result, delListFromNameSet all_fvs new_mbinders)
254   where
255     mbinders_w_srclocs = bagToList (collectMonoBinders mbinds)
256 \end{code}
257
258
259 %************************************************************************
260 %*                                                                      *
261 \subsubsection{         MonoBinds -- the main work is done here}
262 %*                                                                      *
263 %************************************************************************
264
265 @rn_mono_binds@ is used by {\em both} top-level and nested bindings.
266 It assumes that all variables bound in this group are already in scope.
267 This is done {\em either} by pass 3 (for the top-level bindings),
268 {\em or} by @rnMonoBinds@ (for the nested ones).
269
270 \begin{code}
271 rn_mono_binds :: [RenamedSig]           -- Signatures attached to this group
272               -> RdrNameMonoBinds       
273               -> RnMS (RenamedHsBinds,  -- 
274                          FreeVars)      -- Free variables
275
276 rn_mono_binds siglist mbinds
277   =
278          -- Rename the bindings, returning a MonoBindsInfo
279          -- which is a list of indivisible vertices so far as
280          -- the strongly-connected-components (SCC) analysis is concerned
281     flattenMonoBinds siglist mbinds             `thenRn` \ mbinds_info ->
282
283          -- Do the SCC analysis
284     let 
285         edges       = mkEdges (mbinds_info `zip` [(0::Int)..])
286         scc_result  = stronglyConnComp edges
287         final_binds = foldr1 ThenBinds (map reconstructCycle scc_result)
288
289          -- Deal with bound and free-var calculation
290         rhs_fvs = plusFVs [fvs | (_,fvs,_,_) <- mbinds_info]
291     in
292     returnRn (final_binds, rhs_fvs)
293 \end{code}
294
295 @flattenMonoBinds@ is ever-so-slightly magical in that it sticks
296 unique ``vertex tags'' on its output; minor plumbing required.
297
298 Sigh --- need to pass along the signatures for the group of bindings,
299 in case any of them \fbox{\ ???\ } 
300
301 \begin{code}
302 flattenMonoBinds :: [RenamedSig]                -- Signatures
303                  -> RdrNameMonoBinds
304                  -> RnMS [FlatMonoBindsInfo]
305
306 flattenMonoBinds sigs EmptyMonoBinds = returnRn []
307
308 flattenMonoBinds sigs (AndMonoBinds bs1 bs2)
309   = flattenMonoBinds sigs bs1   `thenRn` \ flat1 ->
310     flattenMonoBinds sigs bs2   `thenRn` \ flat2 ->
311     returnRn (flat1 ++ flat2)
312
313 flattenMonoBinds sigs (PatMonoBind pat grhss locn)
314   = pushSrcLocRn locn                   $
315     rnPat pat                           `thenRn` \ (pat', pat_fvs) ->
316
317          -- Find which things are bound in this group
318     let
319         names_bound_here = mkNameSet (collectPatBinders pat')
320         sigs_for_me      = sigsForMe (`elemNameSet` names_bound_here) sigs
321     in
322     rnGRHSs grhss                       `thenRn` \ (grhss', fvs) ->
323     returnRn 
324         [(names_bound_here,
325           fvs `plusFV` pat_fvs,
326           PatMonoBind pat' grhss' locn,
327           sigs_for_me
328          )]
329
330 flattenMonoBinds sigs (FunMonoBind name inf matches locn)
331   = pushSrcLocRn locn                                   $
332     lookupBndrRn name                                   `thenRn` \ new_name ->
333     let
334         sigs_for_me = sigsForMe (new_name ==) sigs
335     in
336     mapFvRn rnMatch matches                             `thenRn` \ (new_matches, fvs) ->
337     mapRn_ (checkPrecMatch inf new_name) new_matches    `thenRn_`
338     returnRn
339       [(unitNameSet new_name,
340         fvs,
341         FunMonoBind new_name inf new_matches locn,
342         sigs_for_me
343         )]
344 \end{code}
345
346
347 @rnMethodBinds@ is used for the method bindings of a class and an instance
348 declaration.   Like @rnMonoBinds@ but without dependency analysis.
349
350 NOTA BENE: we record each {\em binder} of a method-bind group as a free variable.
351 That's crucial when dealing with an instance decl:
352 \begin{verbatim}
353         instance Foo (T a) where
354            op x = ...
355 \end{verbatim}
356 This might be the {\em sole} occurrence of @op@ for an imported class @Foo@,
357 and unless @op@ occurs we won't treat the type signature of @op@ in the class
358 decl for @Foo@ as a source of instance-decl gates.  But we should!  Indeed,
359 in many ways the @op@ in an instance decl is just like an occurrence, not
360 a binder.
361
362 \begin{code}
363 rnMethodBinds :: RdrNameMonoBinds -> RnMS (RenamedMonoBinds, FreeVars)
364
365 rnMethodBinds EmptyMonoBinds = returnRn (EmptyMonoBinds, emptyFVs)
366
367 rnMethodBinds (AndMonoBinds mb1 mb2)
368   = rnMethodBinds mb1   `thenRn` \ (mb1', fvs1) ->
369     rnMethodBinds mb2   `thenRn` \ (mb2', fvs2) ->
370     returnRn (mb1' `AndMonoBinds` mb2', fvs1 `plusFV` fvs2)
371
372 rnMethodBinds (FunMonoBind name inf matches locn)
373   = pushSrcLocRn locn                                   $
374
375     lookupGlobalOccRn name                              `thenRn` \ sel_name -> 
376         -- We use the selector name as the binder
377
378     mapFvRn rnMatch matches                             `thenRn` \ (new_matches, fvs) ->
379     mapRn_ (checkPrecMatch inf sel_name) new_matches    `thenRn_`
380     returnRn (FunMonoBind sel_name inf new_matches locn, fvs `addOneFV` sel_name)
381
382 rnMethodBinds (PatMonoBind (VarPatIn name) grhss locn)
383   = pushSrcLocRn locn                   $
384     lookupGlobalOccRn name              `thenRn` \ sel_name -> 
385     rnGRHSs grhss                       `thenRn` \ (grhss', fvs) ->
386     returnRn (PatMonoBind (VarPatIn sel_name) grhss' locn, fvs `addOneFV` sel_name)
387
388 -- Can't handle method pattern-bindings which bind multiple methods.
389 rnMethodBinds mbind@(PatMonoBind other_pat _ locn)
390   = pushSrcLocRn locn   $
391     failWithRn (EmptyMonoBinds, emptyFVs) (methodBindErr mbind)
392 \end{code}
393
394
395 %************************************************************************
396 %*                                                                      *
397 \subsection[reconstruct-deps]{Reconstructing dependencies}
398 %*                                                                      *
399 %************************************************************************
400
401 This @MonoBinds@- and @ClassDecls@-specific code is segregated here,
402 as the two cases are similar.
403
404 \begin{code}
405 reconstructCycle :: SCC FlatMonoBindsInfo
406                  -> RenamedHsBinds
407
408 reconstructCycle (AcyclicSCC (_, _, binds, sigs))
409   = MonoBind binds sigs NonRecursive
410
411 reconstructCycle (CyclicSCC cycle)
412   = MonoBind this_gp_binds this_gp_sigs Recursive
413   where
414     this_gp_binds      = foldr1 AndMonoBinds [binds | (_, _, binds, _) <- cycle]
415     this_gp_sigs       = foldr1 (++)         [sigs  | (_, _, _, sigs) <- cycle]
416 \end{code}
417
418 %************************************************************************
419 %*                                                                      *
420 \subsubsection{ Manipulating FlatMonoBindInfo}
421 %*                                                                      *
422 %************************************************************************
423
424 During analysis a @MonoBinds@ is flattened to a @FlatMonoBindsInfo@.
425 The @RenamedMonoBinds@ is always an empty bind, a pattern binding or
426 a function binding, and has itself been dependency-analysed and
427 renamed.
428
429 \begin{code}
430 type FlatMonoBindsInfo
431   = (NameSet,                   -- Set of names defined in this vertex
432      NameSet,                   -- Set of names used in this vertex
433      RenamedMonoBinds,
434      [RenamedSig])              -- Signatures, if any, for this vertex
435
436 mkEdges :: [(FlatMonoBindsInfo, VertexTag)] -> [(FlatMonoBindsInfo, VertexTag, [VertexTag])]
437
438 mkEdges flat_info
439   = [ (info, tag, dest_vertices (nameSetToList names_used))
440     | (info@(names_defined, names_used, mbind, sigs), tag) <- flat_info
441     ]
442   where
443          -- An edge (v,v') indicates that v depends on v'
444     dest_vertices src_mentions = [ target_vertex
445                                  | ((names_defined, _, _, _), target_vertex) <- flat_info,
446                                    mentioned_name <- src_mentions,
447                                    mentioned_name `elemNameSet` names_defined
448                                  ]
449 \end{code}
450
451
452 %************************************************************************
453 %*                                                                      *
454 \subsubsection[dep-Sigs]{Signatures (and user-pragmas for values)}
455 %*                                                                      *
456 %************************************************************************
457
458 @renameSigs@ checks for:
459 \begin{enumerate}
460 \item more than one sig for one thing;
461 \item signatures given for things not bound here;
462 \item with suitably flaggery, that all top-level things have type signatures.
463 \end{enumerate}
464 %
465 At the moment we don't gather free-var info from the types in
466 signatures.  We'd only need this if we wanted to report unused tyvars.
467
468 \begin{code}
469 renameSigs ::  (RenamedSig -> Bool)             -- OK-sig predicate
470             -> [RdrNameSig]
471             -> RnMS ([RenamedSig], FreeVars)
472
473 renameSigs ok_sig [] = returnRn ([], emptyFVs)  -- Common shortcut
474
475 renameSigs ok_sig sigs
476   =      -- Rename the signatures
477     mapFvRn renameSig sigs      `thenRn` \ (sigs', fvs) ->
478
479         -- Check for (a) duplicate signatures
480         --           (b) signatures for things not in this group
481     let
482         in_scope         = filter is_in_scope sigs'
483         is_in_scope sig  = case sigName sig of
484                                 Just n  -> not (isUnboundName n)
485                                 Nothing -> True
486         (not_dups, dups) = removeDups cmpHsSig in_scope
487         (goods, bads)    = partition ok_sig not_dups
488     in
489     mapRn_ unknownSigErr bads                   `thenRn_`
490     mapRn_ dupSigDeclErr dups                   `thenRn_`
491     returnRn (goods, fvs)
492
493 -- We use lookupOccRn in the signatures, which is a little bit unsatisfactory
494 -- because this won't work for:
495 --      instance Foo T where
496 --        {-# INLINE op #-}
497 --        Baz.op = ...
498 -- We'll just rename the INLINE prag to refer to whatever other 'op'
499 -- is in scope.  (I'm assuming that Baz.op isn't in scope unqualified.)
500 -- Doesn't seem worth much trouble to sort this.
501
502 renameSig :: Sig RdrName -> RnMS (Sig Name, FreeVars)
503
504 renameSig (Sig v ty src_loc)
505   = pushSrcLocRn src_loc $
506     lookupOccRn v                               `thenRn` \ new_v ->
507     rnHsSigType (quotes (ppr v)) ty             `thenRn` \ (new_ty,fvs) ->
508     returnRn (Sig new_v new_ty src_loc, fvs `addOneFV` new_v)
509
510 renameSig (SpecInstSig ty src_loc)
511   = pushSrcLocRn src_loc $
512     rnHsSigType (text "A SPECIALISE instance pragma") ty `thenRn` \ (new_ty, fvs) ->
513     returnRn (SpecInstSig new_ty src_loc, fvs)
514
515 renameSig (SpecSig v ty src_loc)
516   = pushSrcLocRn src_loc $
517     lookupOccRn v                       `thenRn` \ new_v ->
518     rnHsSigType (quotes (ppr v)) ty     `thenRn` \ (new_ty,fvs) ->
519     returnRn (SpecSig new_v new_ty src_loc, fvs `addOneFV` new_v)
520
521 renameSig (FixSig (FixitySig v fix src_loc))
522   = pushSrcLocRn src_loc $
523     lookupOccRn v               `thenRn` \ new_v ->
524     returnRn (FixSig (FixitySig new_v fix src_loc), unitFV new_v)
525
526 renameSig (DeprecSig (Deprecation ie txt) src_loc)
527   = pushSrcLocRn src_loc $
528     renameIE lookupOccRn ie     `thenRn` \ (new_ie, fvs) ->
529     returnRn (DeprecSig (Deprecation new_ie txt) src_loc, fvs)
530
531 renameSig (InlineSig v p src_loc)
532   = pushSrcLocRn src_loc $
533     lookupOccRn v               `thenRn` \ new_v ->
534     returnRn (InlineSig new_v p src_loc, unitFV new_v)
535
536 renameSig (NoInlineSig v p src_loc)
537   = pushSrcLocRn src_loc $
538     lookupOccRn v               `thenRn` \ new_v ->
539     returnRn (NoInlineSig new_v p src_loc, unitFV new_v)
540 \end{code}
541
542 \begin{code}
543 renameIE :: (RdrName -> RnMS Name) -> IE RdrName -> RnMS (IE Name, FreeVars)
544 renameIE lookup_occ_nm (IEVar v)
545   = lookup_occ_nm v             `thenRn` \ new_v ->
546     returnRn (IEVar new_v, unitFV new_v)
547
548 renameIE lookup_occ_nm (IEThingAbs v)
549   = lookup_occ_nm v             `thenRn` \ new_v ->
550     returnRn (IEThingAbs new_v, unitFV new_v)
551
552 renameIE lookup_occ_nm (IEThingAll v)
553   = lookup_occ_nm v             `thenRn` \ new_v ->
554     returnRn (IEThingAll new_v, unitFV new_v)
555
556 renameIE lookup_occ_nm (IEThingWith v vs)
557   = lookup_occ_nm v             `thenRn` \ new_v ->
558     mapRn lookup_occ_nm vs      `thenRn` \ new_vs ->
559     returnRn (IEThingWith new_v new_vs, plusFVs [ unitFV x | x <- new_v:new_vs ])
560
561 renameIE lookup_occ_nm (IEModuleContents m)
562   = returnRn (IEModuleContents m, emptyFVs)
563 \end{code}
564
565
566 %************************************************************************
567 %*                                                                      *
568 \subsection{Error messages}
569 %*                                                                      *
570 %************************************************************************
571
572 \begin{code}
573 dupSigDeclErr (sig:sigs)
574   = pushSrcLocRn loc $
575     addErrRn (sep [ptext SLIT("Duplicate") <+> ptext what_it_is <> colon,
576                    ppr sig])
577   where
578     (what_it_is, loc) = hsSigDoc sig
579
580 unknownSigErr sig
581   = pushSrcLocRn loc $
582     addErrRn (sep [ptext SLIT("Misplaced") <+> ptext what_it_is <> colon,
583                    ppr sig])
584   where
585     (what_it_is, loc) = hsSigDoc sig
586
587 missingSigWarn var
588   = sep [ptext SLIT("definition but no type signature for"), quotes (ppr var)]
589
590 methodBindErr mbind
591  =  hang (ptext SLIT("Can't handle multiple methods defined by one pattern binding"))
592        4 (ppr mbind)
593 \end{code}