Start working on type code

This commit is contained in:
2019-08-25 01:36:34 -07:00
parent cf3d2f5d8b
commit 11716f21e7
4 changed files with 66 additions and 0 deletions

25
03/type.cpp Normal file
View File

@@ -0,0 +1,25 @@
#include "type.hpp"
#include <sstream>
#include <algorithm>
std::string type_mgr::new_type_name() {
std::ostringstream oss;
int temp = last_id++;
do {
oss << (char) ('a' + (temp % 26));
temp /= 26;
} while(temp);
std::string str = oss.str();
std::reverse(str.begin(), str.end());
return str;
};
type_ptr type_mgr::new_type() {
return type_ptr(new type_var(new_type_name()));
}
type_ptr type_mgr::new_arrow_type() {
return type_ptr(new type_arr(new_type(), new_type()));
}