diff options
author | Alex Sinyagin <sinyagin.alexander@gmail.com> | 2016-08-18 21:12:15 +0800 |
---|---|---|
committer | Alex Sinyagin <sinyagin.alexander@gmail.com> | 2016-08-18 21:12:15 +0800 |
commit | 9139d763d302ac2a1afbd9d28c9b0d0861a14d3e (patch) | |
tree | c9712ab8a91073cb90c9cffbff3c3b6f2aa0e3d8 | |
parent | 5061eb2b2b622ae6d1eb743962e53e6ceaf74798 (diff) | |
download | dexon-solidity-9139d763d302ac2a1afbd9d28c9b0d0861a14d3e.tar dexon-solidity-9139d763d302ac2a1afbd9d28c9b0d0861a14d3e.tar.gz dexon-solidity-9139d763d302ac2a1afbd9d28c9b0d0861a14d3e.tar.bz2 dexon-solidity-9139d763d302ac2a1afbd9d28c9b0d0861a14d3e.tar.lz dexon-solidity-9139d763d302ac2a1afbd9d28c9b0d0861a14d3e.tar.xz dexon-solidity-9139d763d302ac2a1afbd9d28c9b0d0861a14d3e.tar.zst dexon-solidity-9139d763d302ac2a1afbd9d28c9b0d0861a14d3e.zip |
Use the full names for JSON AST nodes
-rw-r--r-- | libsolidity/ast/ASTJsonConverter.cpp | 22 | ||||
-rw-r--r-- | test/libsolidity/ASTJSON.cpp | 16 |
2 files changed, 19 insertions, 19 deletions
diff --git a/libsolidity/ast/ASTJsonConverter.cpp b/libsolidity/ast/ASTJsonConverter.cpp index f793f5f1..c7a9d7ec 100644 --- a/libsolidity/ast/ASTJsonConverter.cpp +++ b/libsolidity/ast/ASTJsonConverter.cpp @@ -116,37 +116,37 @@ bool ASTJsonConverter::visit(SourceUnit const&) bool ASTJsonConverter::visit(ImportDirective const& _node) { - addJsonNode(_node, "Import", { make_pair("file", _node.path())}); + addJsonNode(_node, "ImportDirective", { make_pair("file", _node.path())}); return true; } bool ASTJsonConverter::visit(ContractDefinition const& _node) { - addJsonNode(_node, "Contract", { make_pair("name", _node.name()) }, true); + addJsonNode(_node, "ContractDefinition", { make_pair("name", _node.name()) }, true); return true; } bool ASTJsonConverter::visit(InheritanceSpecifier const& _node) { - addJsonNode(_node, "Inheritance", {}, true); + addJsonNode(_node, "InheritanceSpecifier", {}, true); return true; } bool ASTJsonConverter::visit(UsingForDirective const& _node) { - addJsonNode(_node, "UsingFor", {}, true); + addJsonNode(_node, "UsingForDirective", {}, true); return true; } bool ASTJsonConverter::visit(StructDefinition const& _node) { - addJsonNode(_node, "Struct", { make_pair("name", _node.name()) }, true); + addJsonNode(_node, "StructDefinition", { make_pair("name", _node.name()) }, true); return true; } bool ASTJsonConverter::visit(EnumDefinition const& _node) { - addJsonNode(_node, "Enum", { make_pair("name", _node.name()) }, true); + addJsonNode(_node, "EnumDefinition", { make_pair("name", _node.name()) }, true); return true; } @@ -164,7 +164,7 @@ bool ASTJsonConverter::visit(ParameterList const& _node) bool ASTJsonConverter::visit(FunctionDefinition const& _node) { - addJsonNode(_node, "Function", + addJsonNode(_node, "FunctionDefinition", { make_pair("name", _node.name()), make_pair("public", boost::lexical_cast<std::string>(_node.isPublic())), make_pair("const", boost::lexical_cast<std::string>(_node.isDeclaredConst())) }, @@ -189,7 +189,7 @@ bool ASTJsonConverter::visit(ModifierDefinition const& _node) bool ASTJsonConverter::visit(ModifierInvocation const& _node) { - addJsonNode(_node, "Modifier", {}, true); + addJsonNode(_node, "ModifierInvocation", {}, true); return true; } @@ -200,7 +200,7 @@ bool ASTJsonConverter::visit(TypeName const&) bool ASTJsonConverter::visit(EventDefinition const& _node) { - addJsonNode(_node, "Event", { make_pair("name", _node.name()) }, true); + addJsonNode(_node, "EventDefinition", { make_pair("name", _node.name()) }, true); return true; } @@ -244,7 +244,7 @@ bool ASTJsonConverter::visit(Block const& _node) bool ASTJsonConverter::visit(PlaceholderStatement const& _node) { - addJsonNode(_node, "Placeholder", {}, true); + addJsonNode(_node, "PlaceholderStatement", {}, true); return true; } @@ -292,7 +292,7 @@ bool ASTJsonConverter::visit(Throw const& _node) bool ASTJsonConverter::visit(VariableDeclarationStatement const& _node) { - addJsonNode(_node, "VariableDefinition", {}, true); + addJsonNode(_node, "VariableDefinitionStatement", {}, true); return true; } diff --git a/test/libsolidity/ASTJSON.cpp b/test/libsolidity/ASTJSON.cpp index 53222f65..64624a2d 100644 --- a/test/libsolidity/ASTJSON.cpp +++ b/test/libsolidity/ASTJSON.cpp @@ -57,8 +57,8 @@ BOOST_AUTO_TEST_CASE(source_location) sourceIndices["a"] = 1; Json::Value astJson = ASTJsonConverter(c.ast("a"), sourceIndices).json(); BOOST_CHECK_EQUAL(astJson["name"], "root"); - BOOST_CHECK_EQUAL(astJson["children"][0]["name"], "Contract"); - BOOST_CHECK_EQUAL(astJson["children"][0]["children"][0]["name"], "Function"); + BOOST_CHECK_EQUAL(astJson["children"][0]["name"], "ContractDefinition"); + BOOST_CHECK_EQUAL(astJson["children"][0]["children"][0]["name"], "FunctionDefinition"); BOOST_CHECK_EQUAL(astJson["children"][0]["children"][0]["src"], "13:32:1"); } @@ -71,7 +71,7 @@ BOOST_AUTO_TEST_CASE(inheritance_specifier) sourceIndices["a"] = 1; Json::Value astJson = ASTJsonConverter(c.ast("a"), sourceIndices).json(); BOOST_CHECK_EQUAL(astJson["children"][1]["attributes"]["name"], "C2"); - BOOST_CHECK_EQUAL(astJson["children"][1]["children"][0]["name"], "Inheritance"); + BOOST_CHECK_EQUAL(astJson["children"][1]["children"][0]["name"], "InheritanceSpecifier"); BOOST_CHECK_EQUAL(astJson["children"][1]["children"][0]["src"], "30:2:1"); BOOST_CHECK_EQUAL(astJson["children"][1]["children"][0]["children"][0]["name"], "UserDefinedTypeName"); BOOST_CHECK_EQUAL(astJson["children"][1]["children"][0]["children"][0]["attributes"]["name"], "C1"); @@ -86,7 +86,7 @@ BOOST_AUTO_TEST_CASE(using_for_directive) sourceIndices["a"] = 1; Json::Value astJson = ASTJsonConverter(c.ast("a"), sourceIndices).json(); Json::Value usingFor = astJson["children"][1]["children"][0]; - BOOST_CHECK_EQUAL(usingFor["name"], "UsingFor"); + BOOST_CHECK_EQUAL(usingFor["name"], "UsingForDirective"); BOOST_CHECK_EQUAL(usingFor["src"], "26:17:1"); BOOST_CHECK_EQUAL(usingFor["children"][0]["name"], "UserDefinedTypeName"); BOOST_CHECK_EQUAL(usingFor["children"][0]["attributes"]["name"], "L"); @@ -103,7 +103,7 @@ BOOST_AUTO_TEST_CASE(enum_definition) sourceIndices["a"] = 1; Json::Value astJson = ASTJsonConverter(c.ast("a"), sourceIndices).json(); Json::Value enumDefinition = astJson["children"][0]["children"][0]; - BOOST_CHECK_EQUAL(enumDefinition["name"], "Enum"); + BOOST_CHECK_EQUAL(enumDefinition["name"], "EnumDefinition"); BOOST_CHECK_EQUAL(enumDefinition["attributes"]["name"], "E"); BOOST_CHECK_EQUAL(enumDefinition["src"], "13:9:1"); } @@ -148,7 +148,7 @@ BOOST_AUTO_TEST_CASE(modifier_invocation) sourceIndices["a"] = 1; Json::Value astJson = ASTJsonConverter(c.ast("a"), sourceIndices).json(); Json::Value modifier = astJson["children"][0]["children"][1]["children"][2]; - BOOST_CHECK_EQUAL(modifier["name"], "Modifier"); + BOOST_CHECK_EQUAL(modifier["name"], "ModifierInvocation"); BOOST_CHECK_EQUAL(modifier["src"], "51:4:1"); BOOST_CHECK_EQUAL(modifier["children"][0]["attributes"]["type"], "modifier (uint256)"); BOOST_CHECK_EQUAL(modifier["children"][0]["attributes"]["value"], "M"); @@ -164,7 +164,7 @@ BOOST_AUTO_TEST_CASE(event_definition) sourceIndices["a"] = 1; Json::Value astJson = ASTJsonConverter(c.ast("a"), sourceIndices).json(); Json::Value event = astJson["children"][0]["children"][0]; - BOOST_CHECK_EQUAL(event["name"], "Event"); + BOOST_CHECK_EQUAL(event["name"], "EventDefinition"); BOOST_CHECK_EQUAL(event["attributes"]["name"], "E"); BOOST_CHECK_EQUAL(event["src"], "13:10:1"); } @@ -191,7 +191,7 @@ BOOST_AUTO_TEST_CASE(placeholder_statement) sourceIndices["a"] = 1; Json::Value astJson = ASTJsonConverter(c.ast("a"), sourceIndices).json(); Json::Value placeholder = astJson["children"][0]["children"][0]["children"][1]["children"][0]; - BOOST_CHECK_EQUAL(placeholder["name"], "Placeholder"); + BOOST_CHECK_EQUAL(placeholder["name"], "PlaceholderStatement"); BOOST_CHECK_EQUAL(placeholder["src"], "26:1:1"); } |