0.1.7
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();