mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
minor fixes and changelog update
This commit is contained in:
parent
1d22233a43
commit
e82df073d1
@ -1,4 +1,5 @@
|
||||
### 0.4.12 (unreleased)
|
||||
* AST: export all attributes to Json format
|
||||
|
||||
### 0.4.11 (2017-05-03)
|
||||
|
||||
|
@ -1246,6 +1246,7 @@ bool TypeChecker::visit(FunctionCall const& _functionCall)
|
||||
}
|
||||
else
|
||||
_functionCall.annotation().kind = FunctionCallKind::FunctionCall;
|
||||
solAssert(_functionCall.annotation().kind != FunctionCallKind::Unset, "");
|
||||
|
||||
if (_functionCall.annotation().kind == FunctionCallKind::TypeConversion)
|
||||
{
|
||||
|
@ -634,7 +634,7 @@ bool ASTJsonConverter::visit(FunctionCall const& _node)
|
||||
};
|
||||
if (m_legacy)
|
||||
{
|
||||
attributes.push_back(make_pair("isStructConstructorCall", functionCallKind(_node.annotation().kind)));
|
||||
attributes.push_back(make_pair("isStructConstructorCall", _node.annotation().kind == FunctionCallKind::StructConstructorCall));
|
||||
attributes.push_back(make_pair("type_conversion", _node.annotation().kind == FunctionCallKind::TypeConversion));
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user