ceylon-ide-eclipse
ceylon-ide-eclipse copied to clipboard
Eclipse Plugin for Ceylon
If two projects contain modules / class /methods named the same, double clicking in stack trace in console or test failure trace may open the file in the wrong project....
I just tried to split a module in two and as I moved (mouse dragged) source files from one package to another, there were compilation errors, because the source files...
I have a module with this ceylon class: ``` ceylon class Foo(shared String foo) {} ``` This Java class: ``` java package bug; import ceylon.language.Array; import ceylon.language.List; public class Java...
Debugging the following code ``` ceylon Boolean f(Anything a) => false; shared void run() => { null }.collect(f); ``` with a breakpoint on the first line gives the following stack...
It would be nice to have quickfix for "Import is never used" popup.
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); } ```...
The Ceylon Explorer does not currently support `Package Presentation > Hierarchical`. I quickly tried to make it work but failed. One for @davidfestal.
I'm not sure if this is a bug or what, but I'm unable to configure the Ceylon Explorer to show all the Working Sets at once (which is how I...
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()...
``` ceylon Character c = '\{'}'; ``` The typechecker produces the error message > illegal unicode escape sequence: ' is not a Unicode character and the IDE interprets the single...