typeclass tree start

This commit is contained in:
ProgramSnail 2023-05-07 15:17:37 +03:00
parent c1dec6a0d1
commit 173d50672a
15 changed files with 1475 additions and 35 deletions

View file

@ -14,6 +14,8 @@ namespace interpreter::tokens {
struct BaseNode {
std::pair<size_t, size_t> start_position;
std::pair<size_t, size_t> end_position;
std::optional<utils::IdType> type_;
};
// ----------------- Declarations -----------------