Returns the address of the provided symbol if it exists.
Parameters
symbol: string
name of the symbol to lookup
Returns null | bigint
address of the symbol
Example
// Get the address of the main function constaddress = session.symbols.getAddress("main");
// Get the address of a global variable constaddress = session.symbols.getAddress("my_global");
load
load(fullPath): void
Loads only the symbol information for the provided file and replaces the
currently loaded symbol information with it. This is equivalent to calling
unloadAllSymbols followed by add.
Loads only the symbol information for the provided file and adds it to the currently loaded debug information.