| 37 | using namespace solidity::util; |
| 38 | |
| 39 | StackVariable::StackVariable(CompilerContext& _compilerContext, VariableDeclaration const& _declaration): |
| 40 | LValue(_compilerContext, _declaration.annotation().type), |
| 41 | m_baseStackOffset(m_context.baseStackOffsetOfVariable(_declaration)), |
| 42 | m_size(m_dataType->sizeOnStack()) |
| 43 | { |
| 44 | } |
| 45 | |
| 46 | void StackVariable::retrieveValue(SourceLocation const& _location, bool) const |
| 47 | { |
nothing calls this directly
no test coverage detected