PorygonLang/src/Evaluator/EvalValues/TableEvalValue.cpp

16 lines
597 B
C++
Raw Normal View History

2019-06-26 14:19:34 +00:00
#include "TableEvalValue.hpp"
#include "../Iterator/SimpleKeyIterator.hpp"
2019-09-12 16:19:06 +00:00
#include "NumericEvalValue.hpp"
2019-06-26 14:19:34 +00:00
inline Porygon::Evaluation::Iterator * Porygon::Evaluation::TableEvalValue::GetKeyIterator() const {
2019-06-26 14:19:34 +00:00
return new TableKeyIterator(this);
}
2019-09-12 16:19:06 +00:00
Porygon::Evaluation::EvalValue *
Porygon::Evaluation::TableEvalValue::UnaryOperation(Porygon::Binder::BoundUnaryOperation operation) const {
if (operation == Porygon::Binder::BoundUnaryOperation::Count){
return new NumericEvalValue(static_cast<int64_t>(this->_table->size()));
}
return EvalValue::UnaryOperation(operation);
}