restructure

This commit is contained in:
nub31
2025-06-12 23:37:28 +02:00
parent 7f6a825c01
commit bf4db69f86
73 changed files with 43 additions and 40 deletions

View File

@@ -0,0 +1,8 @@
using Nub.Lang.Frontend.Lexing;
namespace Nub.Lang.Frontend.Parsing.Expressions;
public class AddressOfNode(IReadOnlyList<Token> tokens, LValueNode expression) : ExpressionNode(tokens)
{
public LValueNode Expression { get; } = expression;
}