| 171 | } |
| 172 | |
| 173 | void IRGenerationContext::addStateVariable( |
| 174 | VariableDeclaration const& _declaration, |
| 175 | u256 _storageOffset, |
| 176 | unsigned _byteOffset |
| 177 | ) |
| 178 | { |
| 179 | m_stateVariables[&_declaration] = std::make_pair(std::move(_storageOffset), _byteOffset); |
| 180 | } |
| 181 | |
| 182 | std::string IRGenerationContext::newYulVariable() |
| 183 | { |