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