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
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
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
Glasgow Haskell Compiler
GHC
Commits
26b29eba
Commit
26b29eba
authored
4 years ago
by
Shayne Fletcher
Browse files
Options
Downloads
Patches
Plain Diff
add AnnDot annotation to getField calc
parent
25dded33
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/GHC/Parser.y
+12
-14
12 additions, 14 deletions
compiler/GHC/Parser.y
with
12 additions
and
14 deletions
compiler/GHC/Parser.y
+
12
−
14
View file @
26b29eba
...
...
@@ -2618,20 +2618,18 @@ fexp :: { ECP }
-- See Note [Whitespace-sensitive operator parsing] in Lexer.x
| fexp TIGHT_INFIX_PROJ field
{% do { ; $1 <- runPV (unECP $1)
-- Suppose lhs is an application term e.g. 'f a' and
-- rhs is '.b'. Usually we want the parse 'f
-- (a.b)' rather than '(f a).b.'. However, if lhs is
-- a projection 'r.a' (say) then we want the parse
-- '(r.a).b'.
; return . ecpFromExp $ case $1 of
L _ (HsApp _ f arg)
| not $ isGetField f ->
let l = (comb2 arg $3) in
L (getLoc f `combineSrcSpans` l)
(HsApp noExtField f (mkGetField l arg $3))
_ -> mkGetField (comb2 $1 $>) $1 $3
}}
{% runPV (unECP $1) >>= \ $1 ->
-- Suppose lhs is an application term e.g. 'f a'
-- and rhs is '.b'. Usually we want the parse 'f
-- (a.b)' rather than '(f a).b.'. However, if lhs
-- is a projection 'r.a' (say) then we want the
-- parse '(r.a).b'.
fmap ecpFromExp $ ams (case $1 of
L _ (HsApp _ f arg) | not $ isGetField f ->
let l = comb2 arg $3 in
L (getLoc f `combineSrcSpans` l)
(HsApp noExtField f (mkGetField l arg $3))
_ -> mkGetField (comb2 $1 $>) $1 $3) [mj AnnDot $2] }
| aexp { $1 }
...
...
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