This commit is contained in:
nub31
2025-06-10 17:49:44 +02:00
parent dce5a2b566
commit 79ec5f9b0f
5 changed files with 167 additions and 85 deletions

View File

@@ -2,9 +2,9 @@
namespace Nub.Lang.Frontend.Parsing.Expressions;
public class IdentifierNode(IReadOnlyList<Token> tokens, string @namespace, string name) : LValueNode(tokens)
public class IdentifierNode(IReadOnlyList<Token> tokens, string? @namespace, string name) : LValueNode(tokens)
{
public string Namespace { get; } = @namespace;
public string? Namespace { get; } = @namespace;
public string Name { get; } = name;
public override string ToString() => Name;