eclipse-archived / ceylon.formatter

A formatter for the Ceylon programming language, written in Ceylon.
Apache License 2.0
14 stars 11 forks source link

by default formatter doesn't handle named arguments elegantly #64

Closed gavinking closed 10 years ago

gavinking commented 10 years ago

Given:

void run() {
    value arr = Array { 1, 2, 3 };
}

The formatter produces:

void run() { value arr = Array { 
    1, 2, 3 }; }
lucaswerkmeister commented 10 years ago

Not on the command line; probably an IDE integration issue. Closing because we now have three of those.