Ivan “CLOVIS” Canet

Results 63 issues of Ivan “CLOVIS” Canet
trafficstars

It seems like `cargo test-all-features --workspace` tests the whole workspace for any combination of features. I'd like to test each crate in the workspace for any combination of its own...

Chrome is aiming to implement [a `console.createTask()` method](https://developer.chrome.com/en/blog/devtools-modern-web-debugging/#linked-stack-traces) that allows the debugger to link the source of an asynchronous call to its target (e.g. the stacktraces go across asynchronous boundaries)....

js

The compiler crashes with this error message. I did not manage to find the cause. Stacktrace: ``` java.lang.IllegalStateException: IdSignature clash: clovis.ui.components/Buttons.Button$composable|3863356179520890837[0]; Existed declaration FUN name:Button$composable visibility:public modality:ABSTRACT ($this:clovis.ui.components.Buttons, action:kotlin.Function0, enabled:kotlin.Boolean,...

compiler

**Is your feature request related to a problem? Please describe** When I run `./gradlew dokkaHtmlMultiModule`, I often want to open the files in a browser. Currently, I have to run...

enhancement

Adding getters using Optionals to be more "up-to-date" with Java 8 (see issue #94 for the discussion)

Here's a small example of the problem: ``` JsonObject json = new JsonObject(); json.add("test", (String) null); String content = json.getString("test", "default"); ``` When running this, an `UnsupportedOperationException` is thrown. According...

Since Java 8, Optionals were added to replace `null` when a method can not return a result, as seen in `JsonObject` with the methods `get`, `getInt` ... Although the current...

Hi! I have started to study this repository and it seems to be a solution to many of my problems. However, when trying to apply it to my projects, I'm...

question
alternative structuring option

**Describe the bug** When using an interface which inherits from other interfaces which have `@Composable` default methods, the application immediately crashes at runtime with the following exception: ``` java.lang.ClassCastException: androidx.compose.runtime.internal.ComposableLambdaImpl...

bug
compiler
desktop
reproduced

### What version are you currently using? 1.2.0-RC ### What would you like to see? Sometimes, inside `Raise`, a failed precondition stops the computation from going further, and short-circuiting is...