8a5336aca2
Package fragment classes now are named "*Package-<filename>-<hash>" instead of "*Package$src$<filename>$<hash>". This will help to avoid erroneous code in intellij FileManager, which assumes that classes with dollars are always inner classes of some other class (see AnnotationDescriptorDeserializer)
10 lines
178 B
Kotlin
10 lines
178 B
Kotlin
package a
|
|
|
|
val prop: Int = 0
|
|
get() {
|
|
return $prop + 1
|
|
}
|
|
|
|
// 2 INVOKESTATIC a/APackage-1-[0-9a-f]+\.getProp \(\)I
|
|
// 1 GETSTATIC a/APackage-1-[0-9a-f]+\.prop \: I
|