diff options
author | chriseth <chris@ethereum.org> | 2018-11-30 02:30:27 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-11-30 02:30:27 +0800 |
commit | 73a64da041efb2b64b1c89ed6012161cb278e24e (patch) | |
tree | 260f3b75dc04b3b684b4818a604bbb606a3a19f9 /libsolidity/codegen | |
parent | 124a8def845186ba55ee8566b05cc617554dbcbc (diff) | |
download | dexon-solidity-73a64da041efb2b64b1c89ed6012161cb278e24e.tar.gz dexon-solidity-73a64da041efb2b64b1c89ed6012161cb278e24e.tar.zst dexon-solidity-73a64da041efb2b64b1c89ed6012161cb278e24e.zip |
Fix bug related to state variables of function type accessed via base contract.
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 87eecd2e..121585d9 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -1153,7 +1153,9 @@ bool ExpressionCompiler::visit(MemberAccess const& _memberAccess) if (dynamic_cast<ContractType const*>(type->actualType().get())) { solAssert(_memberAccess.annotation().type, "_memberAccess has no type"); - if (auto funType = dynamic_cast<FunctionType const*>(_memberAccess.annotation().type.get())) + if (auto variable = dynamic_cast<VariableDeclaration const*>(_memberAccess.annotation().referencedDeclaration)) + appendVariable(*variable, static_cast<Expression const&>(_memberAccess)); + else if (auto funType = dynamic_cast<FunctionType const*>(_memberAccess.annotation().type.get())) { switch (funType->kind()) { @@ -1199,8 +1201,6 @@ bool ExpressionCompiler::visit(MemberAccess const& _memberAccess) { // no-op } - else if (auto variable = dynamic_cast<VariableDeclaration const*>(_memberAccess.annotation().referencedDeclaration)) - appendVariable(*variable, static_cast<Expression const&>(_memberAccess)); else _memberAccess.expression().accept(*this); } |