Nicolas Stucki

Results 138 comments of Nicolas Stucki

Someone should try to update the community build version of propquill in the dotty project submodules.

Copy paste `class 😃` into the REPL and then delete 3 characters. It still happens.

Now if I paste `class 😃` in Mac I get ```scala scala> class  ``` Does not misalign anymore but it is a different regression with usicode characters. Same happens...

It is probably the [`augmentString`](https://github.com/scala/scala/blob/2.13.x/src/library/scala/Predef.scala#L406) from `Predef` (implicit conversion to [`StringOps`](https://github.com/scala/scala/blob/2.13.x/src/library/scala/collection/StringOps.scala#L180)). I wonder if this conversion is applied in the same way with and without the TASTy library.

#### About quoted patterns > One thing that would be worth investigating is: how does this interact with [quoted patterns](https://docs.scala-lang.org/scala3/guides/macros/quotes.html#quoted-patterns)? /cc @nicolasstucki I think it's fine to just not support...

The `frameworkDetector.js` is returning correctly the framework in Firefox and Chrome.

If all tests pass if they are executed with `parallelExecution in Test := false`.

If I have 3 test frameworks, then sbt is opening 3 instances of Chrome with `testFrameworkInfo.js`, 3 with `testMaster.js` and the slaves. @gzm0 is this how it is supposed to...

```scala import scala.quoted._ import scala.quoted.matching.{ExprSeq, ConstSeq} inline def foo(xs: Int*) = ${ impl('xs) } def impl(xs: Expr[Seq[Int]]) given QuoteContext: Expr[Unit] = xs match { case ExprSeq(xs2) => xs2: Seq[Expr[Int]] //...