PorygonLang/src/Evaluator/EvalValues/TableEvalValue.cpp

7 lines
211 B
C++
Raw Normal View History

2019-06-26 14:19:34 +00:00
#include "TableEvalValue.hpp"
#include "../Iterator/SimpleKeyIterator.hpp"
Porygon::Evaluation::Iterator * Porygon::Evaluation::TableEvalValue::GetKeyIterator() const {
return new TableKeyIterator(this);
}