diff options
author | Jonas Herzig <jonas@spark-squared.com> | 2021-11-12 12:58:49 +0100 |
---|---|---|
committer | Jonas Herzig <jonas@spark-squared.com> | 2021-11-13 10:28:09 +0100 |
commit | 3ee08cbce94a4e7e1ce668f06f5a612cd9f1e677 (patch) | |
tree | 940042d08d31be55f9c1ea643bf3cf41070121ce /src/testB/kotlin/bMarker.kt | |
parent | b30404f156adb6e01bfe4edc50b4de4245ba4509 (diff) | |
download | Remap-3ee08cbce94a4e7e1ce668f06f5a612cd9f1e677.tar.gz Remap-3ee08cbce94a4e7e1ce668f06f5a612cd9f1e677.tar.bz2 Remap-3ee08cbce94a4e7e1ce668f06f5a612cd9f1e677.zip |
Fix mapping of synthetic properties when overridden in Kotlin class
In these cases, the getMethod of the property will not have a Psi element and we
need to traverse up the overrides until we find one that does.
Diffstat (limited to 'src/testB/kotlin/bMarker.kt')
-rw-r--r-- | src/testB/kotlin/bMarker.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testB/kotlin/bMarker.kt b/src/testB/kotlin/bMarker.kt new file mode 100644 index 0000000..b56de50 --- /dev/null +++ b/src/testB/kotlin/bMarker.kt @@ -0,0 +1,3 @@ +@file:Suppress("unused") // Exists only so we can find the testB/kotlin classes on the classpath + +private const val dummy = 1 |