ceylon-sdk
ceylon-sdk copied to clipboard
Standard platform modules belonging to the Ceylon SDK
[This new enum value](https://docs.oracle.com/javase/10/docs/api/javax/net/ssl/SSLEngineResult.HandshakeStatus.html#NEED_UNWRAP_AGAIN) causes a compilation failure in `SslSocketImpl.ceylon`.
The `ceylon.logging::logger` function accepts an argument with type ```ceylon shared alias Category => Module|Package; ``` I suggest adding `ceylon.language.meta.declaration::ClassDeclaration` to the accepted argument types, so a logger can have a...
Add a new `ceylon.markdown` module which processes Common Markdown (http://commonmark.org/) and renders Html, plain text, and possibly more outputs. The frontend and backend should be separate, with an SPI to...
When writing tests with the `ceylon.test` module, the `parameters` annotation is unintuitive to use when the test has been encapsulated in an object or a class, because the annotation may...
[Previously opened in a wrong repo, sorry.] Some time ago, Javascript got a stickiness flag `y`. Now Ceylon can have cross-platform sticky regexes, as in Java it is implemented (as...
Somewhere “fluent” APIs win over Ceylon’s named argument syntax is when there is inheritance. With a class that specifies a bunch of arguments (with potentially a lot being defaulted), every...
Currently `ceylon.time` can produce ISO timestamps. I would also like to have a convenience function for rendering "date stamps", of form 20161102. @DiegoCoronel @luolong WDYT?
The browser interop module has no tests, we should try to add some at least so we perhaps could have caught https://github.com/ceylon/ceylon/issues/6473 sooner.
Right now the SDK can't be built using an installed Ceylon version, you _need_ the `ceylon` project to exist in the same folder as `ceylon-sdk`. This didn't use to be...
Working with `http.client` i can't find any way to configure proxy-server.(authentication also needed) I found only java solution like ``` java Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("10.0.0.1", 8080)); conn...