MCPcopy Create free account
hub / github.com/d0iasm/saba / Environment

Class Environment

core/src/renderer/js/runtime.rs:99–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97/// https://262.ecma-international.org/12.0/#sec-environment-records
98#[derive(Debug, Clone)]
99pub struct Environment {
100 variables: VariableMap,
101 outer: Option<Rc<RefCell<Environment>>>,
102}
103
104impl Environment {
105 fn new(outer: Option<Rc<RefCell<Environment>>>) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected