ceylon-ide-eclipse
ceylon-ide-eclipse copied to clipboard
Eclipse Plugin for Ceylon
If I create a Ceylon project containing Java code that depends on Ceylon code, and I attempt to navigate from the Java code to the Ceylon code using Open Declaration...
Figure out if we can make Java projects that depend on Ceylon projects navigate to Ceylon types by clicking on them. ATM you get to the bytecode, which is not...
I have a Ceylon proejct with `CeylonType` and a Java project with `JavaUser` which uses that type. The Java project has the Ceylon project's output `.car` file in its build...
In `ceylon-ide-common`, we have this interface: ``` ceylon shared interface AbstractTerminateStatementAction given Document satisfies CommonDocument { ... ``` And an implementation for unit tests: ``` ceylon class TerminateStatementActionTest() satisfies AbstractTerminateStatementAction...
When the IDE projects are open, if I go on `CeylonBuilder.java` in `generateBinaries` and hover with `Ctrl` pressed over the `compile()` call, I don't get the click pointer until about...
I have the IDE and ide-common projects open, and their dependencies, but I'm not touching any file from these projects. The build is done and Eclipse is doing nothing. Now...
The type hierarchy of `Tree.Term` does not show its subclasses. This seems to be specific to this Java class.
If I have a package with a Ceylon class and a Java class which share the same name, I don't get any error at all on incremental build. After a...
When ever I rebuild the ceylon-ide-common project, I end up with errors in the com.redhat.ceylon.eclipse.ui project, and I have to manually rebuild com.redhat.ceylon.eclipse.ui. @davidfestal do you know why this is?
For example, in `com.redhat.ceylon.eclipse.ui`, if I do a ⌘-⇧-G on `ExportModuleImportProposal`, it shows usages in Java code, but not in `eclipseExportModuleImportQuickFix`, which is a Ceylon declaration.