#78 @JvmField is ignored by Dokka Javadoc
[Kotlin/dokka] Issue created by
fschoellhammer
Using Dokka-Android Javadoc 0.9.8
Source:
class Apple {
@get:JvmName("_tree")
internal val source: Tree
}
The actual JVM method that will be generated is
public Tree _tree()
, however Dokka calls the method
public Tree getTree$module()