[VISUALIZER] Render original symbols/descriptors in fir/psi

This commit is contained in:
Ivan Kylchik
2021-03-05 15:36:49 +03:00
committed by TeamCityServer
parent 869585870d
commit e19514f1dc
22 changed files with 243 additions and 156 deletions
@@ -4,7 +4,7 @@ abstract class Base<T>(var x: T) {
abstract fun replace(newValue: T)
}
class Derived(var x: Int): Base<Int>(x) {
class Derived(x: Int): Base<Int>(x) {
override fun replace(newValue: Int) {
x = newValue
}