This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/src/compiler/Nub.Lang/Frontend/Parsing/ModuleNode.cs
2025-05-05 19:26:23 +02:00

8 lines
304 B
C#

namespace Nub.Lang.Frontend.Parsing;
public class ModuleNode(string path, List<string> imports, List<DefinitionNode> definitions) : Node
{
public string Path { get; } = path;
public List<string> Imports { get; } = imports;
public List<DefinitionNode> Definitions { get; } = definitions;
}