Make some refactors for name mangling and encapsulation.

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

9
13/mangler.hpp Normal file
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);
};