mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
changed checking for external type in VariableDeclaration::checkTypeRequirements()
changed error msg
This commit is contained in:
parent
37a0234c4a
commit
06dea23331
17
AST.cpp
17
AST.cpp
@ -338,7 +338,14 @@ void FunctionDefinition::checkTypeRequirements()
|
|||||||
if (!var->getType()->canLiveOutsideStorage())
|
if (!var->getType()->canLiveOutsideStorage())
|
||||||
BOOST_THROW_EXCEPTION(var->createTypeError("Type is required to live outside storage."));
|
BOOST_THROW_EXCEPTION(var->createTypeError("Type is required to live outside storage."));
|
||||||
if (getVisibility() >= Visibility::Public && !(var->getType()->externalType()))
|
if (getVisibility() >= Visibility::Public && !(var->getType()->externalType()))
|
||||||
BOOST_THROW_EXCEPTION(var->createTypeError("Internal type is not allowed for function with external visibility"));
|
{
|
||||||
|
// todo delete when arrays as parameter type in internal functions will be implemented
|
||||||
|
ArrayType const* type = dynamic_cast<ArrayType const*>(var->getType().get());
|
||||||
|
if (getVisibility() == Visibility::Public && type)
|
||||||
|
BOOST_THROW_EXCEPTION(var->createTypeError("Array type is not allowed as parameter for internal functions."));
|
||||||
|
else
|
||||||
|
BOOST_THROW_EXCEPTION(var->createTypeError("Internal type is not allowed for function with external visibility."));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (ASTPointer<ModifierInvocation> const& modifier: m_functionModifiers)
|
for (ASTPointer<ModifierInvocation> const& modifier: m_functionModifiers)
|
||||||
modifier->checkTypeRequirements(isConstructor() ?
|
modifier->checkTypeRequirements(isConstructor() ?
|
||||||
@ -379,6 +386,14 @@ void VariableDeclaration::checkTypeRequirements()
|
|||||||
m_value->expectType(*m_type);
|
m_value->expectType(*m_type);
|
||||||
if (m_isStateVariable && !m_type->externalType() && getVisibility() >= Visibility::Public)
|
if (m_isStateVariable && !m_type->externalType() && getVisibility() >= Visibility::Public)
|
||||||
BOOST_THROW_EXCEPTION(createTypeError("Internal type is not allowed for state variables."));
|
BOOST_THROW_EXCEPTION(createTypeError("Internal type is not allowed for state variables."));
|
||||||
|
|
||||||
|
auto sharedToExternalTypes = FunctionType(*this).externalType(); // do not distroy the shared pointer.
|
||||||
|
auto externalFunctionTypes = dynamic_cast<FunctionType const*>(sharedToExternalTypes.get());
|
||||||
|
TypePointers retParamTypes = externalFunctionTypes->getReturnParameterTypes();
|
||||||
|
TypePointers parameterTypes = externalFunctionTypes->getParameterTypes();
|
||||||
|
for (auto parameter: parameterTypes + retParamTypes)
|
||||||
|
if (!parameter && !(parameter->externalType()))
|
||||||
|
BOOST_THROW_EXCEPTION(createTypeError("Internal type is not allowed for state variables."));
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
// no type declared and no previous assignment, infer the type
|
// no type declared and no previous assignment, infer the type
|
||||||
|
Loading…
Reference in New Issue
Block a user