Apoorv Ingle pushed to branch wip/spj-apporv-Oct24 at Glasgow Haskell Compiler / GHC
Commits:
-
40a3603f
by Apoorv Ingle at 2025-12-21T23:25:52-06:00
1 changed file:
Changes:
| ... | ... | @@ -502,11 +502,11 @@ rnExpr (ExplicitList _ exps) |
| 502 | 502 | then return (ExplicitList noExtField exps', fvs)
|
| 503 | 503 | else
|
| 504 | 504 | do { (from_list_n_name, fvs') <- lookupSyntaxName fromListNName
|
| 505 | - ; loc <- getSrcSpanM -- See Note [Source locations for implicit function calls]
|
|
| 505 | + --; loc <- getSrcSpanM -- See Note [Source locations for implicit function calls]
|
|
| 506 | 506 | ; let rn_list = ExplicitList noExtField exps'
|
| 507 | 507 | lit_n = mkIntegralLit (length exps)
|
| 508 | 508 | hs_lit = genHsIntegralLit lit_n
|
| 509 | - exp_list = genHsApps' (L (noAnnSrcSpan loc) from_list_n_name) [hs_lit, wrapGenSpan rn_list]
|
|
| 509 | + exp_list = genHsApps' (wrapGenSpan from_list_n_name) [hs_lit, wrapGenSpan rn_list]
|
|
| 510 | 510 | ; return ( mkExpandedExpr rn_list exp_list
|
| 511 | 511 | , fvs `plusFV` fvs') } }
|
| 512 | 512 |