fix(inko): indent call nodes

This ensures that when you add a new call line in the middle of a call
chain, the line is indented like so:

    foo
      .bar
      .new_line_here
      .baz

Instead of it being indented like so:

    foo
      .bar
    .new_line_here
      .baz
This commit is contained in:
Yorick Peterse 2024-05-08 17:01:41 +02:00 committed by Amaan Qureshi
parent 1be5aa99e3
commit 9e1cda4e71

View file

@ -7,6 +7,7 @@
(binary)
(block)
(bounds)
(call)
(cast)
(class)
(class_pattern)