definition:
|
ppQName :: Options -> QName -> Doc
ppQName o qn@(m, i)
| null m = text i
| isConsId qn || isListId qn || isTupleId qn = text i
| q == QualNone = text i
| q == QualImportsButPrelude
&& (m == m' || m == "Prelude") = text i
| q == QualImports && m == m' = text i
| otherwise = text $ m ++ '.' : i
where
q = qualMode o
m' = currentModule o
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty-print a qualified name
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{(,)}) |-> _}
|
name:
|
ppQName
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> (String, String) -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|