Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
374fd5eb
Commit
374fd5eb
authored
27 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1997-07-26 03:36:28 by sof]
reflect change to newOverloadedLit
parent
683f1043
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ghc/compiler/typecheck/TcPat.lhs
+9
-9
9 additions, 9 deletions
ghc/compiler/typecheck/TcPat.lhs
with
9 additions
and
9 deletions
ghc/compiler/typecheck/TcPat.lhs
+
9
−
9
View file @
374fd5eb
...
...
@@ -14,7 +14,7 @@ import HsSyn ( InPat(..), OutPat(..), HsExpr(..), HsLit(..),
Match, HsBinds, HsType, Fixity,
ArithSeqInfo, Stmt, DoOrListComp, Fake )
import RnHsSyn ( SYN_IE(RenamedPat) )
import TcHsSyn ( SYN_IE(TcPat)
, TcIdOcc(..)
)
import TcHsSyn ( SYN_IE(TcPat) )
import TcMonad
import Inst ( Inst, OverloadedLit(..), InstOrigin(..),
...
...
@@ -25,7 +25,7 @@ import Name ( Name {- instance Outputable -} )
import TcEnv ( tcLookupGlobalValue, tcLookupGlobalValueByKey,
tcLookupLocalValueOK )
import SpecEnv ( SpecEnv )
import TcType ( SYN_IE(TcType), TcMaybe, newTyVarTy, newTyVarTys, tcInstId )
import TcType (
TcIdOcc(..),
SYN_IE(TcType), TcMaybe, newTyVarTy, newTyVarTys, tcInstId )
import Unify ( unifyTauTy, unifyTauTyList, unifyTauTyLists )
import Bag ( Bag )
...
...
@@ -277,13 +277,13 @@ tcPat (LitPatIn lit@(HsDoublePrim _))
tcPat (LitPatIn lit@(HsInt i))
= newTyVarTy mkBoxedTypeKind `thenNF_Tc` \ tyvar_ty ->
newOverloadedLit origin
(OverloadedIntegral i) tyvar_ty `thenNF_Tc` \ (
lie1,
over_lit_
id
) ->
(OverloadedIntegral i) tyvar_ty `thenNF_Tc` \ (over_lit_
expr, lie1
) ->
tcLookupGlobalValueByKey eqClassOpKey `thenNF_Tc` \ eq_sel_id ->
newMethod origin (RealId eq_sel_id) [tyvar_ty] `thenNF_Tc` \ (lie2, eq_id) ->
returnTc (NPat lit tyvar_ty (HsApp (HsVar eq_id)
(HsVar
over_lit_
id)
),
over_lit_
expr
),
lie1 `plusLIE` lie2,
tyvar_ty)
where
...
...
@@ -292,13 +292,13 @@ tcPat (LitPatIn lit@(HsInt i))
tcPat (LitPatIn lit@(HsFrac f))
= newTyVarTy mkBoxedTypeKind `thenNF_Tc` \ tyvar_ty ->
newOverloadedLit origin
(OverloadedFractional f) tyvar_ty `thenNF_Tc` \ (
lie1,
over_lit_
id
) ->
(OverloadedFractional f) tyvar_ty `thenNF_Tc` \ (over_lit_
expr, lie1
) ->
tcLookupGlobalValueByKey eqClassOpKey `thenNF_Tc` \ eq_sel_id ->
newMethod origin (RealId eq_sel_id) [tyvar_ty] `thenNF_Tc` \ (lie2, eq_id) ->
returnTc (NPat lit tyvar_ty (HsApp (HsVar eq_id)
(HsVar
over_lit_
id)
),
over_lit_
expr
),
lie1 `plusLIE` lie2,
tyvar_ty)
where
...
...
@@ -316,14 +316,14 @@ tcPat (NPlusKPatIn name lit@(HsInt i))
tcLookupGlobalValueByKey minusClassOpKey `thenNF_Tc` \ minus_sel_id ->
newOverloadedLit origin
(OverloadedIntegral i) local_ty `thenNF_Tc` \ (
lie1,
over_lit_
id
) ->
(OverloadedIntegral i) local_ty `thenNF_Tc` \ (over_lit_
expr, lie1
) ->
newMethod origin (RealId ge_sel_id) [local_ty] `thenNF_Tc` \ (lie2, ge_id) ->
newMethod origin (RealId minus_sel_id) [local_ty] `thenNF_Tc` \ (lie3, minus_id) ->
returnTc (NPlusKPat (TcId local) lit local_ty
(SectionR (HsVar ge_id)
(HsVar
over_lit_
id)
)
(SectionR (HsVar minus_id)
(HsVar
over_lit_
id)
),
(SectionR (HsVar ge_id) over_lit_
expr
)
(SectionR (HsVar minus_id) over_lit_
expr
),
lie1 `plusLIE` lie2 `plusLIE` lie3,
local_ty)
where
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment