about summary refs log tree commit diff
path: root/tests/rustdoc-js-std/path-end-empty.js
AgeCommit message (Collapse)AuthorLines
2025-08-15rustdoc-search: search backend with partitioned suffix treeMichael Howell-1/+2
2024-11-15rustdoc search: allow queries to end in an empty path segmentbinarycat-0/+6
fixes https://github.com/rust-lang/rust/issues/129707 this can be used to show all items in a module, or all associated items for a type. currently sufferes slightly due to case insensitivity, so `Option::` will also show items in the `option::` module. it disables the checking of the last path element, otherwise only items with short names will be shown