January 03, 2022

The “Folded Code” Test

edit

One underrated feature of code editors is “code folding”, the ability to fold a block of code, like this:

Animation of VSCode collapsing blocks of code from multiple lines, into a single line

I use this feature all the time, and recently, it dawned on me that folding your code might help you write better code.

Why I fold code

When I’m reading code, especially large files, I can find it overwhelming to see lots of code. Even more so when I’m unfamiliar with the code. It’s a lot of visual noise and information to take in all at once. In order to reduce this overwhelming sensation, I literally reduce how much code is visible.

If you use VSCode, you can collapse code blocks from the keyboard using “chords”. A “chord” is a command that requires multiple key combinations to perform. You can fold up to 9 levels of indentation by pressing cmd + k, followed by cmd + <number between 1-9>. The number you press is the level depth of the collapse. You can un-collapse all levels by performing cmd + k, then cmd + 0.

Often, when I open up a large file, I’ll start by hitting cmd + k, then cmd + 1 or cmd + 2 to reduce how much code I can see. This allows me to view the file at a higher level. It’s seeing the code “forest” and ignoring the details of the code “trees” for a moment.

Looking at code from this vantage point, where much of the implementation details are hidden, begs us to ask a key question: does the code still describe its purpose at this level?

I believe code that is easy to read, understand, and maintain will also be easy to follow at each level you fold. When you fold it to a level where it’s unclear what happens inside the block, you may have an opportunity to refactor and improve the code.

I can think of two strong examples where the “folded code” test can be seen in action. First, tests.

Think about a block of tests, as we unfold it, we get a more detailed view of the forest. A completely folded test might only say:

describe('Stack', () => {})

We know that this tests something called Stack, which gives us some indication of what we might expect. Unfolding a layer reveals more detail:

describe('Stack', () => {
  it('should make a new stack', () => {})
  it('should add an item to the stack', () => {})
  it('should pop off the top item from the stack', () => {})
  it('should indicate when the stack is empty', () => {})
})

And if we go further, we’d see the implementation details of those tests (I’ll spare you that for now).

On the flip side, the second example is the corollary to these tests, the class that we’re testing.

Now, I often prefer factory functions and think that you can see the same benefits of code folding when writing them, but I believe more people are familiar with classes. Perhaps not in JavaScript, but if you have a background in other languages.

If we were to write a Stack class, going layer by layer, you will see that each level of folding reveals more about it:

class Stack {}

Next, we start to reveal the API of the Stack:

class Stack {
  constructor() {}
  push(item) {}
  pop() {}
  isEmpty() {}
}

At this level, we’ve revealed what the public API of the class is. If this were a more complicated object, we’d also have some idea of the protected or private API as well. At the next level, we can see some of the implementation details.

class Stack {
  constructor() {
    this.stack = []
  }
  push(item) {
    this.stack.push(item)
  }
  pop() {
    return this.stack.pop()
  }
  isEmpty() {
    return this.stack.length === 0
  }
}

Now, you’ll have to use your imagination a bit to apply this principle/test to your work. The stuff you work on day to day is far more complex than I can fit in an example, but I hope you’re getting the gist of what I’m getting at. If you can improve how well your code reads at each level it’s folded, you’re probably writing code that you and your colleagues can update and maintain easily in the future.

Summary

Code folding is a way to reduce visual noise and get a higher level perspective on a module’s functionality. Strive to make your code understandable even when it’s folded through the use of good structure and descriptive variable and function names. Use this “test” as a way to gauge how well you’re communicating the intention of your code to your colleagues and future self.


Liked the post?
Give the author a dopamine boost with a few "beard strokes". Click the beard up to 50 times to show your appreciation.
Want to read more?
Need help with your software problems?

My team and I are ready to help you. Hire Agathist to build your next great project or to improve one of your existing ones.

Get in touch
Kyle Shevlin's face, which is mostly a beard with eyes

Kyle Shevlin is the founder & lead software engineer of Agathist, a software development firm with a mission to build good software with good people.

Agathist
Good software by good people.
Visit https://agath.ist to learn more
Sign up for my newsletter
Let's chat some more about TypeScript, React, and frontend web development. Unsubscribe at any time.
Logo for Just Enough Functional Programming
Just Enough Functional Programming
Check out my courses!
If you enjoy my posts, you might enjoy my courses, too. Click the button to view the course or go to Courses for more information.