-
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
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
zth commentedon Jul 8, 2022
This is pretty interesting imo. Good first issue for someone looking to get into the code action part of the code base. Please ping me if anyone is interested taking a stab at this.
srikanthkyatham commentedon Sep 28, 2022
Hi @zth
I would like to try it.
srikanthkyatham commentedon Sep 28, 2022
I didn't notice there's an active PR