Jasper Moeys

Results 22 issues of Jasper Moeys

ide-scala version: 0.9.0 metals version: 0.5.2 scala versions: 2.11.12, 2.12.8 operating systems: OSX, Windows **Steps to reproduce** 1. open a metals project 2. create file `src/main/scala/Foo.scala` 3. type ``` class...

type:bug
specific:Atom

When starting a REPL for a scala version below 2.11.7 I get ``` Failed to created JLineReader: java.lang.NoClassDefFoundError: jline/console/ConsoleReader Falling back to SimpleReader. ```

bug

The design document says the following: > For implicit classes it is a little bit trickier as those should extend AnyVal for performance reasons, but that's only allowed in an...

bug
documentation

In [this page](https://github.com/scala/docs.scala-lang/blob/master/_style/files.md) the style guide talks about compilation units as though every class, trait, object is a separate compilation unit. But AFAIK this conflicts with the "official Scala definition"...

help wanted

If I want to find out where the `validNel` extension method is coming from, one option is to search for it in the scaladoc. I will find https://typelevel.org/cats/api/cats/syntax/package$$validated$.html and https://typelevel.org/cats/api/cats/syntax/ValidatedIdSyntax.html....

Perhaps https://www.scala-js.org/doc/internals/performance.html could be updated to better reflect the current state. Especially since the update of the GCC I think these numbers are not very accurate anymore.

I am calling a REST API which I cannot disclose, but it returns a response with `Content-Encoding: deflate`. ``` scala> requests.get(url = redactedUrl, params = redactedParams) java.util.zip.ZipException: incorrect header check...

```scala val c = Observable.empty[Int].switchMap(_ => Observable(1,2,3)).toListL.runToFuture ``` `c` will never complete. Of course the same issue also occurs in a less trivial example such as `finiteObservable.filter(isValueICareAbout).switchMap(...)` if zero values...

```sh $ scala-cli e (eval):5: unmatched ' (eval):5: unmatched ' (eval):5: unmatched ' ``` The problem seems to be with those escaped `'` characters: ```sh $ scala-cli complete zsh-v1 "1"...

The implementation still uses an uncancelable `async_` call which will hang on CE 3.5: https://github.com/typelevel/fs2/blob/9c523441c8f1770faafb36e01c893218162cdb72/reactive-streams/src/main/scala/fs2/interop/reactivestreams/StreamSubscriber.scala#L223 The java flow interop is fixed, but the fix hasn't been released yet. Since the...

bug