eclipse-archived / ceylon.formatter

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

Line breaks before specifier of alias not allowed #69

Closed lucaswerkmeister closed 10 years ago

lucaswerkmeister commented 10 years ago

The formatter doesn’t allow this code:

shared alias MetaQualifier
        => SimpleType|GroupedType|MemberName;

and turns it into

shared alias MetaQualifier => SimpleType|GroupedType|MemberName;

which sucks.