Closed
Bug 1919820
Opened 1 year ago
Closed 1 year ago
Make it possible to skip typedef/using with the same name in the context menu
Categories
(Webtools :: Searchfox, enhancement)
Webtools
Searchfox
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1732574
People
(Reporter: arai, Unassigned)
Details
Steps to reproduce:
- open https://searchfox.org/mozilla-central/source/dom/fetch/FetchParent.h#91
- click
nsCString
Actual result:
Context menu for the alias mozilla::dom::PFetchParent::nsCString is shown
Expected result:
Context menu for the original nsCString is shown
This comes from the following namespace import alias, where it imports the original nsCString into the IPDL class.
In most case, that alias isn't much important than the original definition.
It would be nice if we can show the menu items for the original definition, instead of or in addition to the alias.
class PFetchParent :
public mozilla::ipc::IRefCountedProtocol
{
...
typedef ::nsCString nsCString;
Updated•1 year ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•