| 312 | } |
| 313 | |
| 314 | std::string AssemblyItem::getJumpTypeAsString() const |
| 315 | { |
| 316 | switch (m_jumpType) |
| 317 | { |
| 318 | case JumpType::IntoFunction: |
| 319 | return "[in]"; |
| 320 | case JumpType::OutOfFunction: |
| 321 | return "[out]"; |
| 322 | case JumpType::Ordinary: |
| 323 | default: |
| 324 | return ""; |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | std::optional<AssemblyItem::JumpType> AssemblyItem::parseJumpType(std::string const& _jumpType) |
| 329 | { |
no outgoing calls
no test coverage detected