-
Notifications
You must be signed in to change notification settings - Fork 60
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
It's pretty common in ReScript that you want to add some method to a type and thus want to restructure it into its own submodule.
E.g.
type readState = New | Unread | Read
to
module ReadState = {
type t = New | Unread | Read
}
I am not sure though, if we should deliberately not allow this action on types named t
(which are supposedly already in their own module).
cknitt and srikanthkyatham
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed