summaryrefslogtreecommitdiff
path: root/src/eval/scope.rs
blob: 7d69e1fcb13248223c0534ee22e13917e05ae376 (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() }
    }

    /// Associate the given name with the function.
    pub fn insert(&mut self, name: impl Into<String>, function: ValueFunc) {
        self.functions.insert(name.into(), function);
    }

    /// Return the function with the given name if there is one.
    pub fn func(&self, name: &str) -> Option<&ValueFunc> {
        self.functions.get(name)
    }
}

impl Debug for Scope {
    fn fmt(&self, f: &mut Formatter) -> fmt::Result {
        f.debug_set().entries(self.functions.keys()).finish()
    }
}