mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-26 08:48:45 +00:00
type structure change, part done
This commit is contained in:
parent
78c696b99a
commit
522dd16f79
13 changed files with 386 additions and 218 deletions
17
include/builtin_identifiers.hpp
Normal file
17
include/builtin_identifiers.hpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace builtin {
|
||||
|
||||
const static std::string TUPLE_IDENTIFIER = "Tuple";
|
||||
|
||||
const static std::string VARIANT_IDENTIFIER = "Variant";
|
||||
|
||||
const static std::string ARRAY_IDENTIFIER = "Array";
|
||||
|
||||
const static std::string OPTIONAL_IDENTIFIER = "Optional";
|
||||
|
||||
const static std::string RESULT_IDENTIFIER = "Result";
|
||||
|
||||
} // namespace builtin
|
||||
Loading…
Add table
Add a link
Reference in a new issue