TiNameMaps is imported by: TiDs.
module TiNameMaps(module TiNameMaps,AccNames(..)) where import List(nub) import NameMaps(AccNames(..)) import TypedIds(IdTy(..),TypeInfo(..),idTy) import HsIdent(HsIdentI(..)) allTypeNames ds = nub (accNames typeName ds []) where typeName x = case idTy x of Class {} -> (HsCon x:) Type TypeInfo{defType=Nothing} -> (HsVar x:) Type {} -> (HsCon x:) _ -> id
(HTML for this module was generated on 2006-08-12. About the conversion tool.)