diff options
author | Alan Zimmerman <alan.zimm@gmail.com> | 2015-05-11 15:28:55 +0200 |
---|---|---|
committer | Alan Zimmerman <alan.zimm@gmail.com> | 2015-05-11 15:28:55 +0200 |
commit | fe38195eb783fc2f2f2d5ef50fb665b06fd15e82 (patch) | |
tree | 6881106397d6930ff4af336db7949a12f7435787 /testsuite/tests/ghc-api/annotations/.gitignore | |
parent | f35d621de401bea74d42b28ff9a1d8c5d963a92d (diff) | |
download | haskell-fe38195eb783fc2f2f2d5ef50fb665b06fd15e82.tar.gz |
ApiAnnotations : pquals production adds AnnVbar in the wrong place
Summary:
The Parser.y production for pquals is
pquals :: { Located [[LStmt RdrName (LHsExpr RdrName)]] }
: squals '|' pquals
{% addAnnotation (gl $ last $ unLoc $1) AnnVbar (gl $2) >>
return (sLL $1 $> (reverse (unLoc $1) : unLoc $3)) }
| squals { L (getLoc $1) [reverse (unLoc $1)] }
The squals are returned in reverse order, so the AnnVbar should be
attached to the head of the list, not the last.
Test Plan: ./validate
Reviewers: hvr, austin
Reviewed By: austin
Subscribers: thomie, mpickering
Differential Revision: https://phabricator.haskell.org/D869
GHC Trac Issues: #10357
Diffstat (limited to 'testsuite/tests/ghc-api/annotations/.gitignore')
-rw-r--r-- | testsuite/tests/ghc-api/annotations/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/tests/ghc-api/annotations/.gitignore b/testsuite/tests/ghc-api/annotations/.gitignore index 79e26095de..4f6f3be153 100644 --- a/testsuite/tests/ghc-api/annotations/.gitignore +++ b/testsuite/tests/ghc-api/annotations/.gitignore @@ -4,6 +4,7 @@ comments exampleTest listcomps t10309 +t10357 t10255 t10268 t10269 |