aboutsummaryrefslogtreecommitdiffstats
path: root/Types.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-13 00:59:52 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-14 06:16:14 +0800
commit012e32942df6ef7e48ebf0735eca2cd8fe062af0 (patch)
tree28052abd11444c3200308d411cc751b93588d020 /Types.cpp
parente7f40863ef223c47dffe69c812d363b7553151d1 (diff)
downloaddexon-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.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Types.cpp b/Types.cpp
index f2543160..df0b0f20 100644
--- a/Types.cpp
+++ b/Types.cpp
@@ -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()),