owengray-google

Results 20 issues of owengray-google

**Describe the bug** ``` package a class Foo ``` ``` import a.Foo package b /** does [Foo] things, with a `Baz` twist */ class FooBaz : Foo() { /** does...

bug
Google
kdoc-spec

``` @Test fun `hashcode Behavior`() { val moduleK = """ |object Foo { | fun bar() = Unit | const val baz = "baz" |} """.render() val a = moduleK.children.first().children.first()...

bug
Google

**Describe the bug** If, in Java, we have ``` public String getFoo(); public void setFoo(String new); private String foo; ``` Then because the documentable model stores getters and setters inside...

bug
Google

**Describe the bug** When running dokka, some files are not generated. This can apparently happen to any file, though it seems orders of magnitude more common for `index.html` and other...

bug
Google

**Describe the bug** When you have an `@JvmMultifileClass` classlike, it loses all file-level annotations during the generation process. However, all elements within the file retain these annotations. I _suspect_ this...

bug
Google

The test that fails: ``` val moduleJ = """ |public void rab(java.util.List param) """.render(java = true) val drab = moduleJ.function("rab")!!.parameters.single() val genericDrab = (drab.type as GenericTypeConstructor).projections.single() assertThat(genericDrab.annotations()).isNotEmpty() assertThat(genericDrab.annotations().single().dri.classNames).contains("NonNull") ``` The...

bug
Google

This will allow dackka to figure out if a DParameter is from Kotlin or from Java Which is necessary to determine if a bare parameter is non-null K or platform...

**Describe the bug** This may be parallel to [issue 1911 for {@link foo}](https://github.com/Kotlin/dokka/issues/1911). **Expected behaviour** ``` @Test fun `Copied from draganddrop`() { val documentationK = """ | /** | *...

bug
Google

We have seen some hung processes when using our (Google's) [dackka](https://cs.android.com/androidx/platform/tools/dokka-devsite-plugin/+/master:src/main/java/com/google/devsite/DevsitePlugin.kt), built on Jetbrains' [dokka](https://github.com/Kotlin/dokka), using jsoup. I believe the underlying issue we're running into is [in `org.jsoup.nodes.Entities`, where](https://github.com/jhy/jsoup/blob/7d46675bef8cf12397466b8a67599a792fa92b06/src/main/java/org/jsoup/nodes/Entities.java#L29): `private...

needs-more-info

The `FlowOrHeadingContent.h1` method can accept `class` as an argument, but not other parameters. In general, we want to pass through all or most parameters unchanged. The ideal syntax that maintains...