Reworked handling of numerical key tables to make iteration over keys actual numerics, instead of strings
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-06-27 14:02:31 +02:00
parent d86e9ba8ae
commit 9727c9365e
8 changed files with 121 additions and 11 deletions

View File

@@ -182,7 +182,7 @@ namespace Porygon{
return true;
}
shared_ptr<ScriptType> GetIteratorKeyType() const final{
return make_shared<StringScriptType>(false, 0);
return make_shared<NumericScriptType>(true, false);
}
};
}