PorygonLang/src/TableScriptType.hpp

57 lines
1.6 KiB
C++
Raw Normal View History

2019-06-12 13:19:28 +00:00
#ifndef PORYGONLANG_TABLESCRIPTTYPE_HPP
#define PORYGONLANG_TABLESCRIPTTYPE_HPP
#include <unordered_map>
#include "Binder/BoundVariables/BoundVariable.hpp"
class TableScriptType : public ScriptType{
const unordered_map<uint32_t, BoundVariable*>* _values;
2019-06-13 14:26:10 +00:00
const int _localVariableCount;
2019-06-12 13:19:28 +00:00
public:
explicit TableScriptType(unordered_map<uint32_t, BoundVariable*>* values, int localVariableCount)
2019-06-13 14:26:10 +00:00
: ScriptType(TypeClass::Table),
_values(values),
_localVariableCount(localVariableCount)
{}
2019-06-12 13:19:28 +00:00
~TableScriptType() final{
for (auto i : *_values){
delete i.second;
}
delete _values;
}
const bool CanBeIndexedWith(ScriptType* indexer) const final{
2019-06-12 13:19:28 +00:00
return indexer->GetClass() == TypeClass ::String;
}
const bool CanBeIndexedWithIdentifier(uint32_t hash) const final{
return true;
}
const shared_ptr<ScriptType> GetIndexedType(ScriptType* indexer) const final{
2019-06-12 13:19:28 +00:00
auto stringKey = (StringScriptType*)indexer;
if (stringKey->IsKnownAtBind()){
return _values-> at(stringKey->GetHashValue())->GetType();
}
throw "TODO: indexing with dynamic keys";
}
const shared_ptr<ScriptType> GetIndexedType(uint32_t hash) const final{
return _values-> at(hash)->GetType();
}
const unordered_map<uint32_t, BoundVariable*>* GetValues() const{
2019-06-12 13:19:28 +00:00
return _values;
}
const int GetLocalVariableCount() const{
2019-06-13 14:26:10 +00:00
return _localVariableCount;
2019-06-12 13:19:28 +00:00
}
};
#include "ScriptType.hpp"
#endif //PORYGONLANG_TABLESCRIPTTYPE_HPP