summaryrefslogtreecommitdiffstats
path: root/crates/rebel-lang/src/scope.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rebel-lang/src/scope.rs')
-rw-r--r--crates/rebel-lang/src/scope.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/rebel-lang/src/scope.rs b/crates/rebel-lang/src/scope.rs
index 6dcc7ee..b8a66ce 100644
--- a/crates/rebel-lang/src/scope.rs
+++ b/crates/rebel-lang/src/scope.rs
@@ -2,7 +2,7 @@ use std::collections::HashMap;
use rebel_parse::ast;
-#[derive(Debug, Clone)]
+#[derive(Debug)]
pub struct Module<T>(HashMap<String, ModuleEntry<T>>);
impl<T> Module<T> {
@@ -28,7 +28,7 @@ impl<T> Default for Module<T> {
}
}
-#[derive(Debug, Clone)]
+#[derive(Debug)]
pub enum ModuleEntry<T> {
Module(Module<T>),
Def(T),