aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-02-20 01:21:02 +0800
committerchriseth <chris@ethereum.org>2018-03-01 21:28:27 +0800
commit08b6a72d37f4e4149575bfc695d76c61b666a8a9 (patch)
tree555efff83792a49440eebdbebf079b7953d6d3ac /libsolidity/analysis
parent754076319659a387a2c447fe69285aad07e0abb6 (diff)
downloaddexon-solidity-08b6a72d37f4e4149575bfc695d76c61b666a8a9.tar
dexon-solidity-08b6a72d37f4e4149575bfc695d76c61b666a8a9.tar.gz
dexon-solidity-08b6a72d37f4e4149575bfc695d76c61b666a8a9.tar.bz2
dexon-solidity-08b6a72d37f4e4149575bfc695d76c61b666a8a9.tar.lz
dexon-solidity-08b6a72d37f4e4149575bfc695d76c61b666a8a9.tar.xz
dexon-solidity-08b6a72d37f4e4149575bfc695d76c61b666a8a9.tar.zst
dexon-solidity-08b6a72d37f4e4149575bfc695d76c61b666a8a9.zip
Fix multi-dimensional arrays in the ABI.
Diffstat (limited to 'libsolidity/analysis')
-rw-r--r--libsolidity/analysis/TypeChecker.cpp30
1 files changed, 26 insertions, 4 deletions
diff --git a/libsolidity/analysis/TypeChecker.cpp b/libsolidity/analysis/TypeChecker.cpp
index 2914472a..a2d94be4 100644
--- a/libsolidity/analysis/TypeChecker.cpp
+++ b/libsolidity/analysis/TypeChecker.cpp
@@ -34,6 +34,29 @@ using namespace std;
using namespace dev;
using namespace dev::solidity;
+namespace
+{
+
+bool typeSupportedByOldABIEncoder(Type const& _type)
+{
+ if (_type.dataStoredIn(DataLocation::Storage))
+ return true;
+ else if (_type.category() == Type::Category::Struct)
+ return false;
+ else if (_type.category() == Type::Category::Array)
+ {
+ auto const& arrayType = dynamic_cast<ArrayType const&>(_type);
+ auto base = arrayType.baseType();
+ if (!typeSupportedByOldABIEncoder(*base))
+ return false;
+ else if (base->category() == Type::Category::Array && base->isDynamicallySized())
+ return false;
+ }
+ return true;
+}
+
+}
+
bool TypeChecker::checkTypeRequirements(ASTNode const& _contract)
{
@@ -561,13 +584,12 @@ bool TypeChecker::visit(FunctionDefinition const& _function)
m_errorReporter.fatalTypeError(var->location(), "Internal or recursive type is not allowed for public or external functions.");
if (
_function.visibility() > FunctionDefinition::Visibility::Internal &&
- type(*var)->category() == Type::Category::Struct &&
- !type(*var)->dataStoredIn(DataLocation::Storage) &&
- !_function.sourceUnit().annotation().experimentalFeatures.count(ExperimentalFeature::ABIEncoderV2)
+ !_function.sourceUnit().annotation().experimentalFeatures.count(ExperimentalFeature::ABIEncoderV2) &&
+ !typeSupportedByOldABIEncoder(*type(*var))
)
m_errorReporter.typeError(
var->location(),
- "Structs are only supported in the new experimental ABI encoder. "
+ "This type is only supported in the new experimental ABI encoder. "
"Use \"pragma experimental ABIEncoderV2;\" to enable the feature."
);