-
-
Notifications
You must be signed in to change notification settings - Fork 406
Closed as not planned
Labels
component: hls-gadt-pluginIssues related to the hls-gadt-plugin, such as converting a datatype to GADT syntaxIssues related to the hls-gadt-plugin, such as converting a datatype to GADT syntaxtype: bugSomething isn't right: doesn't work as intended, documentation is missing/outdated, etc..Something isn't right: doesn't work as intended, documentation is missing/outdated, etc..
Description
Your environment
haskell-language-server version: 1.8.0.0 (GHC: 8.10.7)
VS Code
Steps to reproduce
Run rewrite to GADT action on:
data AuctionTerms = AuctionTerms
{ -- | What is being sold at the auction?
auctionLot :: !AssetClass
}
Expected behaviour
Got:
data AuctionTerms where
AuctionTerms :: {
-- | What is being sold at the auction?
auctionLot :: !AssetClass
} -> AuctionTerms
Actual behaviour
Got:
data AuctionTerms where
AuctionTerms :: {auctionLot :: !AssetClass} -> AuctionTerms
fendor
Metadata
Metadata
Assignees
Labels
component: hls-gadt-pluginIssues related to the hls-gadt-plugin, such as converting a datatype to GADT syntaxIssues related to the hls-gadt-plugin, such as converting a datatype to GADT syntaxtype: bugSomething isn't right: doesn't work as intended, documentation is missing/outdated, etc..Something isn't right: doesn't work as intended, documentation is missing/outdated, etc..