Adrien Piquerez
Adrien Piquerez
```scala xs.map(x => x + 1) ``` When evaluating an expression, at this line, we don't know if we should insert it at the top level or inside the lambda....
When we inspect a variable which is a function, make it possible to go to its definition: As a draft, we could do something like this ``` x: String =>...
When inspecting a Scala (or Java) collection in the debugger, it would be very useful to see its elements as if it was an array (or rather a lazy array)....
In order to make the Scala 3 expression compiler more stable between versions of the compiler, we should move it and its test suite to the dotty code base. To...
The scala3-step-filter library is able to find a TASTy symbol from a JDI method (the binary method signature). This feature could be reused in other tools (a better stack trace...
```scala def foo(x: List[Int]) = foo match case x :: y :: tail => ??? case x :: Nil => ??? case Nil => //
Bloop writes a final test report at the end of the scalaTestSuites execution:  The sbt test-agent should print a similar test report. The current report is:  Maybe we...

The unit tests take more and more time because: - the unit tests depends on expression-compiler being cross published - many tests start by compiling a Scala source file or...
```scala object Foo { val x = 1 val y = x + 1 } object Main3 { def main(args: Array[String]): Unit = { 1=> Foo // step in 2=>...