aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-25 20:58:15 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-25 21:20:13 +0800
commit8f747aab0f977e62c344f57fe922ba6b0fda3a64 (patch)
treef90a3d47e3b0dafcbd4f16094edf7f6bf69de1d5
parent9986b072ad471908df4402ef860e58e331035948 (diff)
downloaddexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.gz
dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.zst
dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.zip
tests for external types
-rw-r--r--AST.cpp14
-rw-r--r--AST.h4
-rw-r--r--ExpressionCompiler.cpp2
-rw-r--r--Types.cpp7
-rw-r--r--Types.h3
5 files changed, 14 insertions, 16 deletions
diff --git a/AST.cpp b/AST.cpp
index 9a2c1be0..9e81c2cb 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -192,7 +192,7 @@ vector<pair<FixedHash<4>, FunctionTypePointer>> const& ContractDefinition::getIn
if (functionsSeen.count(f->getName()) == 0 && f->isPartOfExternalInterface())
{
functionsSeen.insert(f->getName());
- FixedHash<4> hash(dev::sha3(f->externalSignature()));
+ FixedHash<4> hash(dev::sha3(f->externalSignature(true)));
m_interfaceFunctionList->push_back(make_pair(hash, make_shared<FunctionType>(*f, false)));
}
@@ -202,7 +202,7 @@ vector<pair<FixedHash<4>, FunctionTypePointer>> const& ContractDefinition::getIn
FunctionType ftype(*v);
solAssert(v->getType().get(), "");
functionsSeen.insert(v->getName());
- FixedHash<4> hash(dev::sha3(ftype.externalSignature(v->getName())));
+ FixedHash<4> hash(dev::sha3(ftype.externalSignature(true, v->getName())));
m_interfaceFunctionList->push_back(make_pair(hash, make_shared<FunctionType>(*v)));
}
}
@@ -309,7 +309,7 @@ void FunctionDefinition::checkTypeRequirements()
{
if (!var->getType()->canLiveOutsideStorage())
BOOST_THROW_EXCEPTION(var->createTypeError("Type is required to live outside storage."));
- if (!var->getType()->externalType() && getVisibility() >= Visibility::Public)
+ if (!(var->getType()->externalType()) && getVisibility() >= Visibility::Public)
BOOST_THROW_EXCEPTION(var->createTypeError("Internal type is not allowed for function with external visibility"));
}
for (ASTPointer<ModifierInvocation> const& modifier: m_functionModifiers)
@@ -320,9 +320,9 @@ void FunctionDefinition::checkTypeRequirements()
m_body->checkTypeRequirements();
}
-string FunctionDefinition::externalSignature() const
+string FunctionDefinition::externalSignature(bool isExternalCall) const
{
- return FunctionType(*this).externalSignature(getName());
+ return FunctionType(*this).externalSignature(isExternalCall, getName());
}
bool VariableDeclaration::isLValue() const
@@ -663,10 +663,6 @@ void MemberAccess::checkTypeRequirements()
if (!m_type)
BOOST_THROW_EXCEPTION(createTypeError("Member \"" + *m_memberName + "\" not found or not "
"visible in " + type.toString()));
-// if (auto f = dynamic_cast<FunctionType const*>(m_expression->getType().get()))
-// if (f->getLocation() == FunctionType::Location::External && !m_type->externalType())
-// BOOST_THROW_EXCEPTION(createTypeError(*m_memberName + " member has an internal type."));
-
// This should probably move somewhere else.
if (type.getCategory() == Type::Category::Struct)
m_isLValue = true;
diff --git a/AST.h b/AST.h
index 937c2cea..0d3ef857 100644
--- a/AST.h
+++ b/AST.h
@@ -422,9 +422,9 @@ public:
void checkTypeRequirements();
/// @returns the external signature of the function
- /// That consists of the name of the function followed by the external types of the
+ /// That consists of the name of the function followed by the types(external types if isExternalCall) of the
/// arguments separated by commas all enclosed in parentheses without any spaces.
- std::string externalSignature() const;
+ std::string externalSignature(bool isExternalCall = false) const;
private:
bool m_isConstructor;
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp
index 90568767..ddc347e6 100644
--- a/ExpressionCompiler.cpp
+++ b/ExpressionCompiler.cpp
@@ -544,7 +544,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall)
}
if (!event.isAnonymous())
{
- m_context << u256(h256::Arith(dev::sha3(function.externalSignature(event.getName()))));
+ m_context << u256(h256::Arith(dev::sha3(function.externalSignature(false, event.getName()))));
++numIndexed;
}
solAssert(numIndexed <= 4, "Too many indexed arguments.");
diff --git a/Types.cpp b/Types.cpp
index 6344d128..1776413a 100644
--- a/Types.cpp
+++ b/Types.cpp
@@ -1127,7 +1127,7 @@ MemberList const& FunctionType::getMembers() const
}
}
-string FunctionType::externalSignature(std::string const& _name) const
+string FunctionType::externalSignature(bool isExternalCall, std::string const& _name) const
{
std::string funcName = _name;
if (_name == "")
@@ -1139,8 +1139,9 @@ string FunctionType::externalSignature(std::string const& _name) const
for (auto it = m_parameterTypes.cbegin(); it != m_parameterTypes.cend(); ++it)
{
- solAssert(!!(*it)->externalType(), "Parameter should have external type");
- ret += (*it)->externalType()->toString() + (it + 1 == m_parameterTypes.cend() ? "" : ",");
+ if (isExternalCall)
+ solAssert(!!(*it)->externalType(), "Parameter should have external type");
+ ret += (isExternalCall ? (*it)->externalType()->toString() : (*it)->toString()) + (it + 1 == m_parameterTypes.cend() ? "" : ",");
}
return ret + ")";
}
diff --git a/Types.h b/Types.h
index e00e6b98..c075ff07 100644
--- a/Types.h
+++ b/Types.h
@@ -553,7 +553,8 @@ public:
/// @returns the external signature of this function type given the function name
/// If @a _name is not provided (empty string) then the @c m_declaration member of the
/// function type is used
- std::string externalSignature(std::string const& _name = "") const;
+ /// @a isExternalCall shows if it is external function call
+ std::string externalSignature(bool isExternalCall = false, std::string const& _name = "") const;
Declaration const& getDeclaration() const
{
solAssert(m_declaration, "Requested declaration from a FunctionType that has none");