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,6 +1,6 @@
using Nub.Lang.Frontend.Lexing;
namespace Nub.Lang.Frontend.Parsing;
namespace Nub.Lang.Frontend.Parsing.Expressions;
public class UnaryExpressionNode(IReadOnlyList<Token> tokens, UnaryExpressionOperator @operator, ExpressionNode operand) : ExpressionNode(tokens)
{