diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-13 00:59:52 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-14 06:16:14 +0800 |
commit | 012e32942df6ef7e48ebf0735eca2cd8fe062af0 (patch) | |
tree | 28052abd11444c3200308d411cc751b93588d020 /Types.cpp | |
parent | e7f40863ef223c47dffe69c812d363b7553151d1 (diff) | |
download | dexon-solidity-012e32942df6ef7e48ebf0735eca2cd8fe062af0.tar.gz dexon-solidity-012e32942df6ef7e48ebf0735eca2cd8fe062af0.tar.zst dexon-solidity-012e32942df6ef7e48ebf0735eca2cd8fe062af0.zip |
Enum type conversion and member value access.
- Added tests for the type conversion part.
- Enum member value access still needs some work
Diffstat (limited to 'Types.cpp')
-rw-r--r-- | Types.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -682,6 +682,11 @@ string EnumType::toString() const return string("enum ") + m_enum.getName(); } +bool EnumType::isExplicitlyConvertibleTo(Type const& _convertTo) const +{ + return _convertTo.getCategory() == getCategory() || _convertTo.getCategory() == Category::Integer; +} + FunctionType::FunctionType(FunctionDefinition const& _function, bool _isInternal): m_location(_isInternal ? Location::Internal : Location::External), m_isConstant(_function.isDeclaredConst()), |