Skip to content

Commit

Permalink
Whitespace only
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed Mar 15, 2024
1 parent 71e6b33 commit c7d2826
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Language/Haskell/TH/Desugar/FV.hs
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ extractBoundNamesDPat :: DPat -> OSet Name
extractBoundNamesDPat = go
where
go :: DPat -> OSet Name
go (DLitP _) = OS.empty
go (DVarP n) = OS.singleton n
go (DLitP _) = OS.empty
go (DVarP n) = OS.singleton n
go (DConP _ _ pats) = foldMap go pats
go (DTildeP p) = go p
go (DBangP p) = go p
go (DSigP p _) = go p
go DWildP = OS.empty
go (DTildeP p) = go p
go (DBangP p) = go p
go (DSigP p _) = go p
go DWildP = OS.empty

-----
-- Binding forms
Expand Down

0 comments on commit c7d2826

Please sign in to comment.