Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
toku-sa-n committed Sep 14, 2024
1 parent e992483 commit 604e751
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/HIndent/Ast/Module/Export/Entry.hs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ data ExportEntry
| WithSpecificConstructors
(WithComments (GHC.IEWrappedName GHC.GhcPs))
[WithComments (GHC.IEWrappedName GHC.GhcPs)]
| WithAllConstructors (GHC.LIEWrappedName GHC.GhcPs)
| WithAllConstructors (WithComments (GHC.IEWrappedName GHC.GhcPs))
| ByModule (GHC.GenLocated GHC.SrcSpanAnnA GHC.ModuleName)
#else
data ExportEntry
Expand Down Expand Up @@ -53,7 +53,8 @@ mkExportEntry (GHC.IEThingWith _ name _ constructors _) =
#else
mkExportEntry (GHC.IEVar _ name) = SingleIdentifier $ fromGenLocated name

Check failure on line 54 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (ubuntu-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 54 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (windows-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 54 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (macos-13, 9.0.2)

• Couldn't match type: WithComments
mkExportEntry (GHC.IEThingAbs _ name) = SingleIdentifier $ fromGenLocated name

Check failure on line 55 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (ubuntu-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 55 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (windows-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 55 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (macos-13, 9.0.2)

• Couldn't match type: WithComments
mkExportEntry (GHC.IEThingAll _ name) = WithAllConstructors name
mkExportEntry (GHC.IEThingAll _ name) =
WithAllConstructors $ fromGenLocated name

Check failure on line 57 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (ubuntu-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 57 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (windows-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 57 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (macos-13, 9.0.2)

• Couldn't match type: WithComments
mkExportEntry (GHC.IEThingWith _ name _ constructors) =
WithSpecificConstructors
(fromGenLocated name)

Check failure on line 60 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (ubuntu-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 60 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (windows-latest, 9.0.2)

• Couldn't match type: WithComments

Check failure on line 60 in src/HIndent/Ast/Module/Export/Entry.hs

View workflow job for this annotation

GitHub Actions / CI (macos-13, 9.0.2)

• Couldn't match type: WithComments
Expand Down

0 comments on commit 604e751

Please sign in to comment.