Pavel Fatin

Results 13 comments of Pavel Fatin

The [symbol detection algorithm](https://github.com/pavelfatin/typometer/tree/master/src/main/java/com/pavelfatin/typometer/benchmark) implies that distance between the consecutive dots is uniform. If that is not the case, the algorithm might look for for a newly typed dot in...

Here are a few related things from the IntelliJ Scala plugin that could be useful: * [SCL-13575](https://youtrack.jetbrains.com/issue/SCL-13575) Type annotation settings: "Type is obvious" -> "Type is stable" * [SCL-14339](https://youtrack.jetbrains.com/issue/SCL-14339) "definition...

As for the `new` syntax - I would rather prefer `val baz = Baz(1, "two")` because: 1. Uniform access principle, for constructors. 2. Possible to toggle between constructor and factory...