mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Supported types listed in SSAVariable
This commit is contained in:
@@ -34,10 +34,15 @@ SSAVariable::SSAVariable(Declaration const* _decl,
|
||||
m_symbVar = make_shared<SymbolicIntVariable>(_decl, _interface);
|
||||
else
|
||||
{
|
||||
//solAssert(false, "");
|
||||
solAssert(false, "");
|
||||
}
|
||||
}
|
||||
|
||||
bool SSAVariable::supportedType(Type const* _decl)
|
||||
{
|
||||
return dynamic_cast<IntegerType const*>(_decl);
|
||||
}
|
||||
|
||||
void SSAVariable::resetIndex()
|
||||
{
|
||||
m_currentSequenceCounter = 0;
|
||||
|
||||
Reference in New Issue
Block a user