[][src]Constant lsp_types::code_action_kind::REFACTOR_REWRITE

pub const REFACTOR_REWRITE: &'static str

Base kind for refactoring rewrite actions: 'refactor.rewrite'

Example rewrite actions:

  • Convert JavaScript function to class
  • Add or remove parameter
  • Encapsulate field
  • Make method static
  • Move method to base class
  • ...