blob: fc530bbb98829d0641b7ee07f79a6b66fd1796ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//! Mapping from identifiers to functions.
use std::collections::HashMap;
use std::fmt::{self, Debug, Formatter};
use super::value::ValueFunc;
/// A map from identifiers to functions.
#[derive(Clone, PartialEq)]
pub struct Scope {
functions: HashMap<String, ValueFunc>,
}
impl Scope {
// Create a new empty scope with a fallback function that is invoked when no
// match is found.
pub fn new() -> Self {
Self { functions: HashMap::new() }
}
/// Return the function with the given name if there is one.
pub fn get(&self, name: &str) -> Option<&ValueFunc> {
self.functions.get(name)
}
/// Associate the given name with the function.
pub fn set(&mut self, name: impl Into<String>, function: ValueFunc) {
self.functions.insert(name.into(), function);
}
}
impl Debug for Scope {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
f.debug_set().entries(self.functions.keys()).finish()
}
}
|