-
Notifications
You must be signed in to change notification settings - Fork 830
Closed
Labels
Feature ImprovementImpact-Low(Internal MS Team use only) Describes an issue with limited impact on existing code.(Internal MS Team use only) Describes an issue with limited impact on existing code.Theme-Simple-F#A cross-community initiative called "Simple F#", keeping people in the sweet spot of the language.A cross-community initiative called "Simple F#", keeping people in the sweet spot of the language.
Description
When a record or union type has members there is no need to show the when/end in signature output.
e.g. for
type U =
| A
| B
member x.Name = "U"We get:
type U =
| A
| B
with
member Name : string
endWe want the simpler:
type U =
| A
| B
member Name: stringThere are also similar cases with class/end, struct/end, interface/end
Will be fixed by #12072
vzarytovskii
Metadata
Metadata
Assignees
Labels
Feature ImprovementImpact-Low(Internal MS Team use only) Describes an issue with limited impact on existing code.(Internal MS Team use only) Describes an issue with limited impact on existing code.Theme-Simple-F#A cross-community initiative called "Simple F#", keeping people in the sweet spot of the language.A cross-community initiative called "Simple F#", keeping people in the sweet spot of the language.