literals type check

This commit is contained in:
ProgramSnail 2023-08-12 22:18:54 +03:00
parent 43dfa75b74
commit 5f8d5c5569
3 changed files with 77 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#pragma once
#include "basic_nodes.hpp"
#include "sources_manager.hpp"
namespace type_check {
// IN PROGRESS: modifiers ??
nodes::TypeCheckResult type_check_literal(const nodes::Literal &literal,
SourcesManager &sources_manager);
} // namespace type_check