aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Gluhovsky <gluk256@gmail.com>2015-05-12 04:29:12 +0800
committerVlad Gluhovsky <gluk256@gmail.com>2015-05-12 04:29:12 +0800
commit6ebf0ffcd37f15c7175133b4dbe14a7882a45087 (patch)
treeb425da4371c633b6ae6e58f89569d4a57a0177f3
parenta4d4cf89dacdea17335a41cabc78d382300379ff (diff)
parentcf23eea716f16ab05e10c8bb63978083a2cbe5a6 (diff)
downloaddexon-solidity-6ebf0ffcd37f15c7175133b4dbe14a7882a45087.tar
dexon-solidity-6ebf0ffcd37f15c7175133b4dbe14a7882a45087.tar.gz
dexon-solidity-6ebf0ffcd37f15c7175133b4dbe14a7882a45087.tar.bz2
dexon-solidity-6ebf0ffcd37f15c7175133b4dbe14a7882a45087.tar.lz
dexon-solidity-6ebf0ffcd37f15c7175133b4dbe14a7882a45087.tar.xz
dexon-solidity-6ebf0ffcd37f15c7175133b4dbe14a7882a45087.tar.zst
dexon-solidity-6ebf0ffcd37f15c7175133b4dbe14a7882a45087.zip
Merge branch 'develop' of https://github.com/ethereum/cpp-ethereum into develop
-rw-r--r--libsolidity/SolidityABIJSON.cpp43
-rw-r--r--libsolidity/SolidityNameAndTypeResolution.cpp22
2 files changed, 65 insertions, 0 deletions
diff --git a/libsolidity/SolidityABIJSON.cpp b/libsolidity/SolidityABIJSON.cpp
index 26d0110b..f9bf78d0 100644
--- a/libsolidity/SolidityABIJSON.cpp
+++ b/libsolidity/SolidityABIJSON.cpp
@@ -525,6 +525,49 @@ BOOST_AUTO_TEST_CASE(constructor_abi)
checkInterface(sourceCode, interface);
}
+
+BOOST_AUTO_TEST_CASE(return_param_in_abi)
+{
+ // bug #1801
+ char const* sourceCode = R"(
+ contract test {
+ enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
+ function test(ActionChoices param) {}
+ function ret() returns(ActionChoices){
+ ActionChoices action = ActionChoices.GoLeft;
+ return action;
+ }
+ }
+ )";
+
+ char const* interface = R"(
+ [
+ {
+ "constant" : false,
+ "inputs" : [],
+ "name" : "ret",
+ "outputs" : [
+ {
+ "name" : "",
+ "type" : "uint8"
+ }
+ ],
+ "type" : "function"
+ },
+ {
+ "inputs": [
+ {
+ "name": "param",
+ "type": "uint8"
+ }
+ ],
+ "type": "constructor"
+ }
+ ]
+ )";
+ checkInterface(sourceCode, interface);
+}
+
BOOST_AUTO_TEST_SUITE_END()
}
diff --git a/libsolidity/SolidityNameAndTypeResolution.cpp b/libsolidity/SolidityNameAndTypeResolution.cpp
index c317dad9..4ec7b8bd 100644
--- a/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -508,6 +508,28 @@ BOOST_AUTO_TEST_CASE(function_external_types)
}
}
+BOOST_AUTO_TEST_CASE(enum_external_type)
+{
+ // bug #1801
+ ASTPointer<SourceUnit> sourceUnit;
+ char const* text = R"(
+ contract Test {
+ enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
+ function boo(ActionChoices enumArg) external returns (uint ret) {
+ ret = 5;
+ }
+ })";
+ ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name Resolving failed");
+ for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
+ if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
+ {
+ auto functions = contract->getDefinedFunctions();
+ if (functions.empty())
+ continue;
+ BOOST_CHECK_EQUAL("boo(uint8)", functions[0]->externalSignature());
+ }
+}
+
BOOST_AUTO_TEST_CASE(function_external_call_allowed_conversion)
{
char const* text = R"(