Make some refactors for name mangling and encapsulation.

This commit is contained in:
2020-09-15 18:51:28 -07:00
parent 6080094c41
commit 55486d511f
18 changed files with 895 additions and 303 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include <string>
#include <map>
struct mangler {
std::map<std::string, int> occurence_count;
std::string new_mangled_name(const std::string& str);
};