package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type refactoring_kind =
  1. | AddInterface of string option * string
  2. | RemoveInterface of string option * string
  3. | SplitMembers
  4. | AddReturnType of string
  5. | AddTypeHintParameter of string
  6. | OptionizeTypeParameter
  7. | AddTypeMember of string
type position = {
  1. file : Common.filename;
  2. line : int;
  3. col : int;
}
type refactoring = refactoring_kind * position option
val load : Common.filename -> refactoring list