| 154 | |
| 155 | #[derive(Debug, Clone)] |
| 156 | pub struct JsRuntime { |
| 157 | dom_root: Rc<RefCell<DomNode>>, |
| 158 | dom_modified: bool, |
| 159 | functions: Vec<Function>, |
| 160 | env: Rc<RefCell<Environment>>, |
| 161 | } |
| 162 | |
| 163 | impl JsRuntime { |
| 164 | pub fn new(dom_root: Rc<RefCell<DomNode>>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected