Seggan
Seggan
In a large project with many classes, trying to search in the Javadoc output causes lag. I have attached a zip file of the Javadoc output of one of our...
Fixes #4281
Fixes #4279
Fixes #4173
Given the code ```kotlin val String.test: String get() = this + " test" ``` the `kotlin-as-java-plugin` produces A spurious, nonexistent field is created, as well as messing up the signature...
For the code ```kotlin interface Test { fun foo() fun bar() {} } ``` The Javadoc format generates the abstract method as `abstract` and the default method as just a...
Using the `kotlin-as-java-plugin`, the following code: ```kotlin interface Test { fun foo() } ``` Generates the following output: Despite the code being compiled into `void foo()`, the return type shows...
In the `kotlin-as-java-plugin`, whenever an interface has a companion object that companion object is still rendered even if it shouldn't be, for example if all its members are private or...