mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Checked arithmetic by default.
This commit is contained in:
@@ -596,7 +596,7 @@ bool ASTJsonConverter::visit(InlineAssembly const& _node)
|
||||
|
||||
bool ASTJsonConverter::visit(Block const& _node)
|
||||
{
|
||||
setJsonNode(_node, "Block", {
|
||||
setJsonNode(_node, _node.unchecked() ? "UncheckedBlock" : "Block", {
|
||||
make_pair("statements", toJson(_node.statements()))
|
||||
});
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user