Mikołaj Fornal
Mikołaj Fornal
Fixes #15098 Wrong line numbers were coming from `Closure`. Previously it's span was inherited from block end position, now it's assigned explicitly. This fix changes behaviour of test `tests/neg/i9299.scala`: ```scala...
### Describe the bug Write the following code: ```scala val z: Tuple = ??? def m(x: Tuple) = x.zip(z) ``` Hover on `zip` It shows:  Symbol signature: `inline def...
Related dotty PR: https://github.com/lampepfl/dotty/pull/19337
`scalac` allows putting `.jar` files in `-d` option. Invoking`scalac file.scala -d foo.jar` creates `foo.jar` file. `scala-cli compile file.scala -d foo.jar` creates `foo.jar` folder instead. I'd expect the same behavior of...
Meteor 2.3 updates package `accounts-base` to `2.0.0`, which is incompatible with `simple:rest` and `simple:authenticate-user-by-token` ``` While selecting package versions: error: Conflict: Constraint [email protected] is not satisfied by accounts-base 2.0.0. Constraints...
## Compiler version 3.4.0, 3.3.3 (also 3.2.0, 3.1.0, 3.0.0) ## Minimized code Run on jvm newer than 8: File `test.scala`: ```scala object Foo { @Deprecated def foo(): Unit = ???...
After closing #5, we could add preview box, so that user can see how his post will actually look like
Fixes #19925 The same issue with handling right associative extension methods was also present in RefinedPrinter and ShortenedTypePrinter, so I fixed those as well
Fixes: https://youtrack.jetbrains.com/issue/IJPL-11682/Saving-new-shared-run-configurations-silently-overwrites-old-ones-with-same-name This problem is resolved by prepending type of configuration in front of the name, eg. configuration with name `foo` and type `JUnit` will be saved as `JUnit_foo.xml`. This...