updated the javadocs for getSymbols(String name) to document that this

method does not return default local variables or parameters.
This commit is contained in:
ghidravore
2021-11-15 13:04:52 -05:00
parent 87ce9eeeb8
commit 5ba07917c3
@@ -259,7 +259,8 @@ public interface SymbolTable {
* Returns all the symbols with the given name.
*
* <p>NOTE: The resulting iterator will not return default thunks (i.e.,
* thunk function symbol with default source type).</p>
* thunk function symbol with default source type). It will also not work for default
* local variables and parameters.</p>
*
* @param name the name of symbols to search for.
*