Arian Stolwijk

Results 32 comments of Arian Stolwijk

ooh, never mind, `transformTo` works correctly. Still a bit annoying the properties are not updated

You can already do some things like: http://jsfiddle.net/GMXuF/14/

Also what is your main goal, I mean, you can have bezier curves with n points, and you could write a solver for that (as described on http://en.wikipedia.org/wiki/B%C3%A9zier_curve for example)....

Thanks for the hint! With your suggestions I was able to build the plugin indeed, and run the tests. These are the results right now: ``` org.elm.ide.inspections.inference.TypeInferenceInspectionTest3 > test flex...

These tests are still failing: ``` org.elm.workspace.compiler.ElmBuildActionTest > test build Elm application project FAILED com.intellij.serviceContainer.AlreadyDisposedException at ComponentManagerImpl.kt:187 org.elm.workspace.compiler.ElmBuildActionTest > test build Elm project ignores nested function named 'main' FAILED com.intellij.serviceContainer.AlreadyDisposedException...

Ok, the last commits I added do fix the tests, but, as it comments out some lines, can't be the correct fixes yet.

Running elm / elm-format binaries still throws some errors. But they do work. ``` 2021-08-14 16:08:37,809 [ 296532] ERROR - ution.process.OSProcessHandler - Synchronous execution on EDT: /home/arian/.local/bin/elm-format --yes --elm-version=0.19 --stdin,...

Might it be because this example in the graphql-java docs: https://www.graphql-java.com/documentation/v15/batching/ ```java BatchLoader batchLoader = new BatchLoader() { @Override public CompletionStage load(List keys) { return CompletableFuture.completedFuture(getTheseCharacters(keys)); } }; DataLoader characterDataLoader...