Skip to content

0.1.7

@fidian fidian tagged this 21 Nov 19:18
Indentation of lines using comma operators now fixed:

    return a = b(),
        b[1] = 'c',
        b;

Using "finally" now indents correctly:

    try {
        x();
    } finally {
        y();
    }

Context removal at the end of lines (both semicolons and closing braces) is much better.

    if (x) {
        a = ( b ? "c" : "d" )
    } else e();
Assets 2
Loading