-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
repo-panama
In english, "lookup" is both a verb and a noun. The SymbolLookup API uses "lookup" in both forms: as a noun (in SymbolLookup), but also as a verb (in SymbolLookup::lookup).
This overloading leads to some odd code - e.g.
```
var lookup = SymbolLookup.loaderLookup();
lookup.lookup("qsort");
```
It would be better to rename the "lookup" method to something more neutral such as "find" (the javadoc for SymbolLookup uses that term several times, to avoid confusion).
This overloading leads to some odd code - e.g.
```
var lookup = SymbolLookup.loaderLookup();
lookup.lookup("qsort");
```
It would be better to rename the "lookup" method to something more neutral such as "find" (the javadoc for SymbolLookup uses that term several times, to avoid confusion).