aboutsummaryrefslogtreecommitdiffstats
path: root/AST.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AST.cpp')
-rw-r--r--AST.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/AST.cpp b/AST.cpp
index 0c34cea3..95014fa1 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -206,6 +206,12 @@ vector<pair<FixedHash<4>, FunctionTypePointer>> const& ContractDefinition::getIn
return *m_interfaceFunctionList;
}
+TypePointer EnumDeclaration::getType(ContractDefinition const*) const
+{
+ // LTODO
+ return nullptr;
+}
+
void InheritanceSpecifier::checkTypeRequirements()
{
m_baseName->checkTypeRequirements();
@@ -268,7 +274,9 @@ void EnumDefinition::checkValidityOfMembers() const
TypePointer EnumDefinition::getType(ContractDefinition const*) const
{
- return make_shared<TypeType>(make_shared<EnumType>(*this));
+ //LTODO:
+ return nullptr;
+ // return make_shared<TypeType>(make_shared<EnumType>(*this));
}
TypePointer FunctionDefinition::getType(ContractDefinition const*) const