Seggan

Results 18 issues of 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...

bug

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...

bug
plugin: kotlin-as-java

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...

bug

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...

bug

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...

bug