This commit is contained in:
nub31
2025-06-02 16:20:25 +02:00
parent cc80194e48
commit c3714af5f3
34 changed files with 95 additions and 46 deletions

View File

@@ -1,7 +1,7 @@
using Nub.Lang.Frontend.Lexing;
using Nub.Lang.Frontend.Typing;
using Nub.Lang.Frontend.Parsing.Expressions;
namespace Nub.Lang.Frontend.Parsing;
namespace Nub.Lang.Frontend.Parsing.Statements;
public class VariableAssignmentNode(IReadOnlyList<Token> tokens, IdentifierNode identifier, ExpressionNode value) : StatementNode(tokens)
{