Started implementation of parser
This commit is contained in:
@@ -11,6 +11,14 @@ namespace LXC::Parser
|
||||
|
||||
struct FunctionAST
|
||||
{
|
||||
FunctionAST() :
|
||||
name{}, contents{}
|
||||
{}
|
||||
|
||||
FunctionAST(FunctionAST&& other) :
|
||||
name{}, contents{}
|
||||
{}
|
||||
|
||||
std::string name;
|
||||
AST::SyntaxBranch contents;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user