lang_interpreter/interpreter/
module.rs

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
37
38
39
40
41
42
43
use std::collections::HashMap;
use std::rc::Rc;
use crate::interpreter::data::DataObjectRef;

#[derive(Debug)]
pub struct Module {
    //TODO
}

impl Module {
    pub fn new() -> Self {
        Self {
            //TODO
        }
    }

    pub fn is_load(&self) -> bool {
        todo!()
    }

    pub fn exported_variables(&self) -> &HashMap<Rc<str>, DataObjectRef> {
        todo!()
    }
}

#[derive(Debug)]
pub struct ModuleManager {
    //TODO
}

impl ModuleManager {
    pub fn new() -> Self {
        Self {
            //TODO
        }
    }
}

impl Default for ModuleManager {
    fn default() -> Self {
        Self::new()
    }
}