rsc icon indicating copy to clipboard operation
rsc copied to clipboard

Experimental Scala compiler focused on compilation speed

Results 82 rsc issues
Sort by recently updated
recently updated
newest added

Also fixes #353 This will prevent unreadable existential types from being ascribed, as well as circumventing a bug where an existential type might be qualified: `Box[MyScope._1] forSome { type _1...

Last activity was in 2019, no news I could find anywhere, anyone knows what happened? Did Twitter decide to abandon this? Even if so, what happened to all the open...

As of Scala version `2.12.9`, the `-Youtline` and `-Ypickle-write` options have been added. This adds outlining capabilities to `scalac` itself! It would be good to support loading the `.sig` file...

Classpath
Scalasig

To fix add META-INF/services/scalafix.v1.Rule with the rule name

Rsc misses out on including the package type as a prefix. ```scala package foo object O { class D } class C extends O.D ``` ```diff tag: CLASSINFOtpe sym: foo.#C#...

Scalasig

Expected: ```scala def foo = (x: (String, Int)) => x._2 ``` Obtained: ```scala def foo: (String, Int) => Int = (x: (String, Int)) => x._2 ``` Expected: ```scala def foo:...

Scalafix

Given: ```scala trait AC { def foo: Int } def ac = new AC { override val foo: Int = 0 } ``` Obtained: ```scala def ac: AC { val...

Scalafix

Given: ```scala class Box[A] trait T class A extends T class B extends T val foo = Seq(new Box[A], new Box[B]) ``` Obtained: ```scala val foo: Seq[Box[_1] forSome { type...

Scalafix