rescript-lang/rescript-vscode

Feature request: Code action to convert type to module

Ouverte

#430 ouverte le 27 mai 2022

 (3 commentaires) (2 réactions) (0 personne assignée)ReScript (63 forks)github user discovery
enhancementgood first issuehelp wanted

Métriques du dépôt

Stars
 (350 étoiles)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

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).

Guide contributeur