scala3 icon indicating copy to clipboard operation
scala3 copied to clipboard

Fix duplicate member entries in Scaladoc generation

Open cheeseng opened this issue 3 days ago • 1 comments

Resolves an issue where Scaladoc was generating duplicate entries for the same members when combining results from multiple parser instances.

The fix implements deduplication by creating a stable composite key from the member's location, full name, and kind. When duplicates are found, the entry with documentation is preferred, falling back to the first entry if none have docs.

This ensures clean, non-redundant API documentation output.

cheeseng avatar Dec 09 '25 13:12 cheeseng