| 100 | } |
| 101 | |
| 102 | size_t IRGenerationContext::immutableMemoryOffset(VariableDeclaration const& _variable) const |
| 103 | { |
| 104 | solAssert( |
| 105 | m_immutableVariables.count(&_variable), |
| 106 | "Unknown immutable variable: " + _variable.name() |
| 107 | ); |
| 108 | return m_immutableVariables.at(&_variable); |
| 109 | } |
| 110 | |
| 111 | size_t IRGenerationContext::immutableMemoryOffsetRelative(VariableDeclaration const& _variable) const |
| 112 | { |
no test coverage detected