mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2026-01-04 13:18:15 +00:00
literals type check
This commit is contained in:
parent
43dfa75b74
commit
5f8d5c5569
3 changed files with 77 additions and 0 deletions
12
include/basic_type_check.hpp
Normal file
12
include/basic_type_check.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue