This commit is contained in:
nub31
2025-05-27 10:22:51 +02:00
parent 3c48ba9c20
commit c60ae5d092
55 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using Nub.Lang.Frontend.Lexing;
namespace Nub.Lang.Frontend.Parsing;
public abstract class Node(IReadOnlyList<Token> tokens)
{
public IReadOnlyList<Token> Tokens { get; set; } = tokens;
}