diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-04-21 21:17:25 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-04-21 21:17:25 +0200 |
| commit | 72478946c261f04754c11f8a6abf6eb0f43dea31 (patch) | |
| tree | b2a621804d39ace4e57ec4a51b34d40bb4a98987 /src/eval/scope.rs | |
| parent | df58a4d89b67783b1ffc5c3b7282302d59db8c70 (diff) | |
Make frames serializable 📚
This also makes serialization support non-optional since it's too much feature-management for too little benefit.
Diffstat (limited to 'src/eval/scope.rs')
| -rw-r--r-- | src/eval/scope.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/scope.rs b/src/eval/scope.rs index 69d519fd..20c18306 100644 --- a/src/eval/scope.rs +++ b/src/eval/scope.rs @@ -10,7 +10,7 @@ use super::Value; pub type Slot = Rc<RefCell<Value>>; /// A stack of scopes. -#[derive(Debug, Default, Clone, PartialEq)] +#[derive(Default, Debug, Clone, PartialEq)] pub struct Scopes<'a> { /// The active scope. pub top: Scope, |
