--------------------------------------------------------------
| 154 | } |
| 155 | //-------------------------------------------------------------- |
| 156 | debugSymbol_t *debugSymbolPage_t::getSymbolAtOffset( int ofs ) |
| 157 | { |
| 158 | auto it = symMap.find( ofs ); |
| 159 | return it != symMap.end() ? it->second : nullptr; |
| 160 | } |
| 161 | //-------------------------------------------------------------- |
| 162 | debugSymbol_t *debugSymbolPage_t::getSymbol( const std::string &name ) |
| 163 | { |
no outgoing calls
no test coverage detected