Started implementation of parser

This commit is contained in:
Pasha Bibko
2025-07-24 17:49:23 +01:00
parent 28049ece94
commit 90a958a30b
3 changed files with 94 additions and 8 deletions

View File

@@ -11,6 +11,14 @@ namespace LXC::Parser
struct FunctionAST
{
FunctionAST() :
name{}, contents{}
{}
FunctionAST(FunctionAST&& other) :
name{}, contents{}
{}
std::string name;
AST::SyntaxBranch contents;
};