ceylon-dart icon indicating copy to clipboard operation
ceylon-dart copied to clipboard

Dart backend for Ceylon

Results 14 ceylon-dart issues
Sort by recently updated
recently updated
newest added

In Dart, all classes can be used as interfaces. The Ceylon translation would be: ``` ceylon class MyClass satisfies SomeOtherClass { ... } ``` which of course is not legal...

request for feedback
interop

The most reasonable (edit: or not... see below) output for the code below is what the JVM produces, where the assignment to a `late` value is non-polymorphic _unless_ the value...

question
waiting

Temp and synthetic variable name generation is a bit ad-hoc and should be centralized. Maybe something like `String generateName(NameTypeEnum purpose, Declaration? forDeclaration)`.

enhancement

When I do ``` ceylon new simple --module-name=com.foo.bar fooBar ``` and then take a look at the run.ceylon, it contains comments like these: ``` // on the command line compile...