Adrien Piquerez

Results 112 issues of 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....

enhancement
expression compiler

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 =>...

enhancement

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)....

enhancement

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...

enhancement

```scala def foo(x: List[Int]) = foo match case x :: y :: tail => ??? case x :: Nil => ??? case Nil => //

bug

Bloop writes a final test report at the end of the scalaTestSuites execution: ![bloop-test-report](https://user-images.githubusercontent.com/13123162/108333260-0a4f3a00-71d1-11eb-9cc7-efe14faa133e.png) The sbt test-agent should print a similar test report. The current report is: ![debug-adapter-test-report](https://user-images.githubusercontent.com/13123162/108333914-b55ff380-71d1-11eb-9087-da4cc5ed7d43.png) Maybe we...

enhancement
good first issue
sbt plugin

![image](https://user-images.githubusercontent.com/13123162/195085682-6cb6a813-bbf5-4c4f-9973-bc7d85b446b4.png)

bug

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...

core
testing

```scala object Foo { val x = 1 val y = x + 1 } object Main3 { def main(args: Array[String]): Unit = { 1=> Foo // step in 2=>...

enhancement
core