ceylon-sdk
ceylon-sdk copied to clipboard
Standard platform modules belonging to the Ceylon SDK
At http://www.infoworld.com/d/application-development/first-look-gavin-kings-ceylon-217197?page=0,0 he has a few things to say about the http server API.
Interface `MapMutator` should have a method ```ceylon shared formal Anything putIfAbsent(Key key, Item item); ``` which should be refined in `MutableMap` as ```ceylon shared formal Item putIfAbsent(Key key, Item item);...
Java serializable classes should be marked by ceylon backend as serializable. I have tested it with com.github.tombentley.alabama "1.0.4" but the exception arrises in SerializationContext which is ceylon.json class. Java model...
Hi Gavin, not sure the best place for inane amateur comments such as this but... The file API looks very clean and I can't wait to start using this in...
There are sometimes need to use Java's `InputStream` and `OutputStream`, and it will be good to have some ceylon's wrappers on them. There are similar interfaces in SDK : *...
Just got this: ``` com.redhat.ceylon.compiler.java.runtime.metamodel.ModelError: Class has more than one overloaded constructor: ClassCastException at com.redhat.ceylon.compiler.java.runtime.metamodel.Metamodel.newModelError(Metamodel.java:1896) at com.redhat.ceylon.compiler.java.runtime.metamodel.Metamodel.newModelError(Metamodel.java:1891) at com.redhat.ceylon.compiler.java.runtime.metamodel.decl.ClassDeclarationImpl.init(ClassDeclarationImpl.java:68) at com.redhat.ceylon.compiler.java.runtime.metamodel.decl.ClassOrInterfaceDeclarationImpl.checkInit(ClassOrInterfaceDeclarationImpl.java:163) at com.redhat.ceylon.compiler.java.runtime.metamodel.decl.ClassOrInterfaceDeclarationImpl.getTypeParameterDeclarations(ClassOrInterfaceDeclarationImpl.java:353) at com.redhat.ceylon.compiler.java.runtime.metamodel.Metamodel.getTypeArguments(Metamodel.java:1450) at com.redhat.ceylon.compiler.java.runtime.metamodel.meta.ClassOrInterfaceImpl.init(ClassOrInterfaceImpl.java:101) at com.redhat.ceylon.compiler.java.runtime.metamodel.meta.ClassOrInterfaceImpl.checkInit(ClassOrInterfaceImpl.java:91) at...
_From @guai on November 24, 2016 17:4_ samba url have domain along with username `smb://[[[authdomain;]user@]host[:port][/share[/dirpath][/name]]][?context]` Pls consider adding it Otherwise ceylon would have several almost compatible classes for url just...
Currently, it looks like the summary test results are calculated when test is submitted by the test framework or when test framework guess the test is completed (possibly, without sending...
Theres lots of famous enterprise frameworks (SprintBoot, Wildfly, etc) extending JUnit behavior to provide a more useful test environment. Currently we can use these frameworks with Ceylon with almost no...
When running `ceylon test` tool, one has to enumerate all test modules to run them. What about "detecting" all the modules in the project and running all modules that import...