Array type works with args

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

View File

@@ -0,0 +1,7 @@
namespace Nub.Lang.Frontend.Parsing;
public class ArrayIndexNode(ExpressionNode expression, ExpressionNode index) : ExpressionNode
{
public ExpressionNode Expression { get; } = expression;
public ExpressionNode Index { get; } = index;
}