mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Improve error message for constant evaluator
This commit is contained in:
@@ -150,7 +150,7 @@ void ReferencesResolver::endVisit(ArrayTypeName const& _typeName)
|
||||
ConstantEvaluator e(*length, m_errorReporter);
|
||||
auto const* lengthType = dynamic_cast<RationalNumberType const*>(length->annotation().type.get());
|
||||
if (!lengthType || !lengthType->mobileType())
|
||||
fatalTypeError(length->location(), "Invalid array length, expected integer literal.");
|
||||
fatalTypeError(length->location(), "Invalid array length, expected integer literal or constant expression.");
|
||||
else if (lengthType->isFractional())
|
||||
fatalTypeError(length->location(), "Array with fractional length specified.");
|
||||
else if (lengthType->isNegative())
|
||||
|
||||
@@ -257,7 +257,7 @@ public:
|
||||
}
|
||||
virtual u256 literalValue(Literal const*) const
|
||||
{
|
||||
solAssert(false, "Literal value requested for type without literals.");
|
||||
solAssert(false, "Literal value requested for type without literals: " + toString(false));
|
||||
}
|
||||
|
||||
/// @returns a (simpler) type that is encoded in the same way for external function calls.
|
||||
|
||||
Reference in New Issue
Block a user