Array type works with args

This commit is contained in:
nub31
2025-05-22 19:31:11 +02:00
parent ba51daa3c0
commit f6d7cdbf58
9 changed files with 250 additions and 105 deletions

View File

@@ -0,0 +1,7 @@
namespace Nub.Lang.Frontend.Parsing;
public class MemberAccessNode(ExpressionNode expression, string member) : ExpressionNode
{
public ExpressionNode Expression { get; } = expression;
public string Member { get; } = member;
}