| 320 | } |
| 321 | |
| 322 | std::pair<u256, unsigned> CompilerContext::storageLocationOfVariable(Declaration const& _declaration) const |
| 323 | { |
| 324 | auto it = m_stateVariables.find(&_declaration); |
| 325 | solAssert(it != m_stateVariables.end(), "Variable not found in storage."); |
| 326 | return it->second; |
| 327 | } |
| 328 | |
| 329 | CompilerContext& CompilerContext::appendJump(evmasm::AssemblyItem::JumpType _jumpType) |
| 330 | { |
no test coverage detected