DEV Community

Cover image for [Go] Speed up your refactoring with GoLand
Julian-Chu
Julian-Chu

Posted on • Edited on

2

[Go] Speed up your refactoring with GoLand

This is a video demo, how to use different refactoring feature in GoLand to speed up you productivity when doing refactor.

Original example is from "extract variable" section of refactoring 2/e.
Rewriting it with golang.

Code smells:

  1. magic number
  2. comments don't match code behavior

Refactoring features:

  1. extract variable(ctrl+alt+v)/ extract const(ctrl+alt+c)
  2. extract method(ctrl+alt+m)
  3. inline variable(ctrl+alt+n)
  4. move method to struct(manual)
  5. move struct and receiver functions(F6)

more useful features in GoLand: top 25 editing features of goland

Top comments (1)

Collapse
 
julianchu profile image
Julian-Chu

Hi Arber, thanks for your suggestion. If next time I make new video demo, will try to add explanation.

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay