Stephane Gallès
Stephane Gallès
To create a complexe `string` expression I very often copy and paste the same expression with a string template. I start with ``` ceylon string => "foo=``foo`` " ``` and...
In a Ceylon project create these java interfaces ``` java public interface Foo { void create(String s); } public interface Bar extends Foo{ void create(String s, String s2); } ```...
How to reproduce : In the same package, create 3 classes in 3 files : ``` ceylon shared class Foo(Bar b, Baz c) {} // file 1 shared class Bar()...
Start with this code ``` ceylon interface Foo1{ shared formal class Bar1() satisfies Foo2{} } interface Foo2{ shared formal class Bar2() satisfies Foo1{} } ``` Then add ``` ceylon void...
This issue depends on issue https://github.com/ceylon/ceylon-ide-eclipse/issues/766