ghc-9.4.4: The GHC API
Safe HaskellSafe-Inferred
LanguageHaskell2010

GHC.Rename.Fixity

Synopsis

Documentation

lookupFixityRn_help :: Name -> RnM (Bool, Fixity) Source #

lookupFixityRn_help returns (True, fixity) if it finds a Fixity in a local environment or from an interface file. Otherwise, it returns (False, fixity) (e.g., for unbound Names or Names without user-supplied fixity declarations).

lookupFieldFixityRn :: FieldOcc GhcRn -> RnM Fixity Source #

Look up the fixity of an occurrence of a record field selector. We use lookupFixityRn' so that we can specify the OccName as the field label, which might be different to the OccName of the selector Name if DuplicateRecordFields is in use (#1173).