Skip to content

Links to properties don't render correctly #116

Description

@niloc132
@JsType(namespace = "asdf")
public class Foo {

    /**
     * See {@link #baz}.
     */
    public String bar;

    public String baz;
}

The generated TS on bar should include a reference to asdf.Foo.baz, but instead we see asdf.baz

export namespace asdf {

	export class Foo {
		/**
		* See {@link asdf.baz}.
		*/
		bar:string;
		baz:string;

		constructor();
	}

}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions