feature(xlabs): export builtin maps (#50)

This commit is contained in:
Xenxo Espasandín 2023-01-31 14:53:49 +01:00 committed by GitHub
parent f7f3a33d0e
commit bf92756d2b
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@ -149,6 +149,7 @@ user*.bat
# VScode
.vscode/
parsed/
compiled/
decompiled/
assembled/

View File

@ -42,6 +42,9 @@ public:
auto decompiler() -> decompiler& { return decompiler_; }
auto func_map() const -> std::unordered_map<std::string_view, u16> const& { return func_map_rev_; }
auto meth_map() const -> std::unordered_map<std::string_view, u16> const& { return meth_map_rev_; }
auto init(gsc::build build, read_cb_type callback) -> void;
auto cleanup() -> void;