eclipse-archived / ceylon.formatter

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

formatter removes whitespace between toplevel declarations #63

Closed gavinking closed 10 years ago

gavinking commented 10 years ago

Given:

shared void run() {} 

class X() {}

String something(String a) => a;

The formatter produces:

shared void run() {} class X() {} String something(String a) => a;
lucaswerkmeister commented 10 years ago

Not on the command line; probably an IDE integration issue.

lucaswerkmeister commented 10 years ago

Closing, we’ll use #62 for IDE integration problems.