aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/ExpressionCompiler.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-09-25 16:41:04 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-25 17:57:21 +0800
commitcb6cdfe7801a3362a489d0fd39cc0ce5a7075fea (patch)
tree706860e394392df3956dc148ef4b8ba5d2cdd23d /libsolidity/codegen/ExpressionCompiler.cpp
parent74972f5fa6c0e59a5178e17ebdb48453528c7169 (diff)
downloaddexon-solidity-cb6cdfe7801a3362a489d0fd39cc0ce5a7075fea.tar.gz
dexon-solidity-cb6cdfe7801a3362a489d0fd39cc0ce5a7075fea.tar.zst
dexon-solidity-cb6cdfe7801a3362a489d0fd39cc0ce5a7075fea.zip
Simplify switch statements by refactoring internal break statements
Diffstat (limited to 'libsolidity/codegen/ExpressionCompiler.cpp')
-rw-r--r--libsolidity/codegen/ExpressionCompiler.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp
index 63d7f1e6..b286594a 100644
--- a/libsolidity/codegen/ExpressionCompiler.cpp
+++ b/libsolidity/codegen/ExpressionCompiler.cpp
@@ -1051,26 +1051,26 @@ bool ExpressionCompiler::visit(MemberAccess const& _memberAccess)
else
alsoSearchInteger = true;
- if (!alsoSearchInteger)
- break;
-
- if (member == "balance")
+ if (alsoSearchInteger)
{
- utils().convertType(
- *_memberAccess.expression().annotation().type,
- IntegerType(0, IntegerType::Modifier::Address),
- true
- );
- m_context << Instruction::BALANCE;
+ if (member == "balance")
+ {
+ utils().convertType(
+ *_memberAccess.expression().annotation().type,
+ IntegerType(0, IntegerType::Modifier::Address),
+ true
+ );
+ m_context << Instruction::BALANCE;
+ }
+ else if ((set<string>{"send", "transfer", "call", "callcode", "delegatecall"}).count(member))
+ utils().convertType(
+ *_memberAccess.expression().annotation().type,
+ IntegerType(0, IntegerType::Modifier::Address),
+ true
+ );
+ else
+ solAssert(false, "Invalid member access to integer");
}
- else if ((set<string>{"send", "transfer", "call", "callcode", "delegatecall"}).count(member))
- utils().convertType(
- *_memberAccess.expression().annotation().type,
- IntegerType(0, IntegerType::Modifier::Address),
- true
- );
- else
- solAssert(false, "Invalid member access to integer");
break;
}
case Type::Category::Function: