Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4,334
Issues
4,334
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
369
Merge Requests
369
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
ddfba75f
Commit
ddfba75f
authored
Aug 15, 2011
by
Simon Peyton Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
In instance declarations, the method names are *occurrences* not *binders*
A long standing bug. The patch fixes Trac #5410
parent
1064ab02
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
28 deletions
+29
-28
compiler/deSugar/DsMeta.hs
compiler/deSugar/DsMeta.hs
+29
-28
No files found.
compiler/deSugar/DsMeta.hs
View file @
ddfba75f
...
...
@@ -301,20 +301,23 @@ repLAssocFamInst = liftM de_loc . mapMaybeM repTyClD
--
repInstD'
::
LInstDecl
Name
->
DsM
(
SrcSpan
,
Core
TH
.
DecQ
)
repInstD'
(
L
loc
(
InstDecl
ty
binds
_
ats
))
-- Ignore user pragmas for now
=
do
{
i
<-
addTyVarBinds
tvs
$
\
_
->
=
do
{
dec
<-
addTyVarBinds
tvs
$
\
_
->
-- We must bring the type variables into scope, so their
-- occurrences don't fail, even though the binders don't
-- appear in the resulting data structure
--
-- But we do NOT bring the binders of 'binds' into scope
-- becuase they are properly regarded as occurrences
-- For example, the method names should be bound to
-- the selector Ids, not to fresh names (Trac #5410)
--
do
{
cxt1
<-
repContext
cxt
;
inst_ty1
<-
repPredTy
(
HsClassP
cls
tys
)
;
ss
<-
mkGenSyms
(
collectHsBindsBinders
binds
)
;
binds1
<-
addBinds
ss
(
rep_binds
binds
)
;
binds1
<-
rep_binds
binds
;
ats1
<-
repLAssocFamInst
ats
;
decls
<-
coreList
decQTyConName
(
ats1
++
binds1
)
;
inst_decl
<-
repInst
cxt1
inst_ty1
decls
;
wrapGenSyms
ss
inst_decl
}
;
return
(
loc
,
i
)}
;
repInst
cxt1
inst_ty1
decls
}
;
return
(
loc
,
dec
)
}
where
(
tvs
,
cxt
,
cls
,
tys
)
=
splitHsInstDeclTy
(
unLoc
ty
)
...
...
@@ -1146,20 +1149,6 @@ addBinds :: [GenSymBind] -> DsM a -> DsM a
-- by the desugarer monad)
addBinds
bs
m
=
dsExtendMetaEnv
(
mkNameEnv
[(
n
,
Bound
id
)
|
(
n
,
id
)
<-
bs
])
m
-- Look up a locally bound name
--
lookupLBinder
::
Located
Name
->
DsM
(
Core
TH
.
Name
)
lookupLBinder
(
L
_
n
)
=
lookupBinder
n
lookupBinder
::
Name
->
DsM
(
Core
TH
.
Name
)
lookupBinder
n
=
do
{
mb_val
<-
dsLookupMetaEnv
n
;
case
mb_val
of
Just
(
Bound
x
)
->
return
(
coreVar
x
)
_
->
failWithDs
msg
}
where
msg
=
ptext
(
sLit
"DsMeta: failed binder lookup when desugaring a TH bracket:"
)
<+>
ppr
n
dupBinder
::
(
Name
,
Name
)
->
DsM
(
Name
,
DsMetaVal
)
dupBinder
(
new
,
old
)
=
do
{
mb_val
<-
dsLookupMetaEnv
old
...
...
@@ -1167,6 +1156,18 @@ dupBinder (new, old)
Just
val
->
return
(
new
,
val
)
Nothing
->
pprPanic
"dupBinder"
(
ppr
old
)
}
-- Look up a locally bound name
--
lookupLBinder
::
Located
Name
->
DsM
(
Core
TH
.
Name
)
lookupLBinder
(
L
_
n
)
=
lookupBinder
n
lookupBinder
::
Name
->
DsM
(
Core
TH
.
Name
)
lookupBinder
=
lookupOcc
-- Binders are brought into scope before the pattern or what-not is
-- desugared. Moreover, in instance declaration the binder of a method
-- will be the selector Id and hence a global; so we need the
-- globalVar case of lookupOcc
-- Look up a name that is either locally bound or a global name
--
-- * If it is a global name, generate the "original name" representation (ie,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment