Wojciech Litewka

Results 45 comments of Wojciech Litewka

Just as in #2834: > how does this work with multiple panes open? Especially if the panes have different fonts or font sizes?

Alternative proposals: 1. instead of `static` section have `static companion object`, so that it is symmetric with `static object`, or 2. (IMHO better) as mentioned above, replace `static object` with...

@streetsofboston > Will companion objects be deprecated? > It is a non-goal of this proposal to deprecate or to completely replace companion objects.

@TheBestPessimist This works because `::one` and `::two` are property references (`KProperty1`s) , which don't have `this` reference. As suggested, this is the same as writing `Outer::one` (in any scope).

Notes: - There is no mention on *how* does this KEEP corelate with [KT-45587](https://youtrack.jetbrains.com/issue/KT-45587) Tuples (structural literals and structural types) - `List.empty` and `List.of` are nice, but if there will...