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

View File

@@ -1,7 +1,8 @@
using Nub.Lang.Frontend.Lexing;
using Nub.Lang.Frontend.Parsing.Expressions;
using Nub.Lang.Frontend.Typing;
namespace Nub.Lang.Frontend.Parsing;
namespace Nub.Lang.Frontend.Parsing.Statements;
public class VariableDeclarationNode(IReadOnlyList<Token> tokens, string name, Optional<NubType> explicitType, Optional<ExpressionNode> value) : StatementNode(tokens)
{