Merge pull request #4770 from ethereum/throw-codegen

Remove code generation for Throw statement
This commit is contained in:
Alex Beregszaszi
2018-08-08 17:55:27 +01:00
committed by GitHub
+2 -4
View File
@@ -779,11 +779,9 @@ bool ContractCompiler::visit(Return const& _return)
return false;
}
bool ContractCompiler::visit(Throw const& _throw)
bool ContractCompiler::visit(Throw const&)
{
CompilerContext::LocationSetter locationSetter(m_context, _throw);
// Do not send back an error detail.
m_context.appendRevert();
solAssert(false, "Throw statement is disallowed.");
return false;
}