broken commit, started working on scopes

This commit is contained in:
2026-02-10 16:33:32 +00:00
parent 5e575e2cd8
commit 8361833b1c
4 changed files with 129 additions and 3 deletions
+8
View File
@@ -19,6 +19,14 @@ pub struct Name {
pub name: String,
pub namespace: Option<String>,
}
impl Name {
pub fn new(name: impl Into<String>, namespace: Option<String>) -> Self {
Self {
name: name.into(),
namespace,
}
}
}
#[derive(Debug, Clone)]
pub struct Program {