7c791f130c
Naively handle dedent after , and ; which works most of the cases but does not work with multi level dedent.
17 lines
168 B
Plaintext
17 lines
168 B
Plaintext
foo();
|
|
bar
|
|
|
|
foo(
|
|
bar().baz(),
|
|
bar
|
|
|
|
foo(
|
|
bar()
|
|
.baz(),
|
|
bar
|
|
|
|
foo()
|
|
.bar()
|
|
.baz();
|
|
bar
|