blob: 8e6576d183e4e746cbdd632b84e74392f0130c5b (
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
|
//! Mapping from identifiers to functions.
use std::collections::HashMap;
use std::fmt::{self, Debug, Formatter};
use super::value::FuncValue;
/// A map from identifiers to functions.
pub struct Scope {
functions: HashMap<String, FuncValue>,
}
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() }
}
/// Associate the given name with the function.
pub fn insert(&mut self, name: impl Into<String>, function: FuncValue) {
self.functions.insert(name.into(), function);
}
/// Return the function with the given name if there is one.
pub fn func(&self, name: &str) -> Option<&FuncValue> {
self.functions.get(name)
}
}
impl Debug for Scope {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
f.debug_set().entries(self.functions.keys()).finish()
}
}
|