summary refs log tree commit diff stats
path: root/compiler/vm.nim
diff options
context:
space:
mode:
authorRyan McConnell <rammcconnell@gmail.com>2023-12-13 01:16:34 +0000
committerGitHub <noreply@github.com>2023-12-13 09:16:34 +0800
commitdf6cb645f7834de0c43afe2deb023c3e01093503 (patch)
treef740d7a4168b99f91dbbd6c755706f2a200596ae /compiler/vm.nim
parentdb603237c648a796ef7bff77641febd30b3999cd (diff)
downloadNim-df6cb645f7834de0c43afe2deb023c3e01093503.tar.gz
Typrel whitespace (#23061)
Just makes the case statements easier to look at when folded

```nim
case foo
of a:

of b:
of c:
else:
case bar:
of a:
of b:

of c:

of d:
else:
```
to
```nim
case foo
of a:
of b:
of c:
else:

case bar:
of a:
of b:
of c:
of d:
else:
```
Diffstat (limited to 'compiler/vm.nim')
0 files changed, 0 insertions, 0 deletions