(&self, source: &str, source_path: Option<String>)
| 330 | } |
| 331 | |
| 332 | pub fn exec(&self, source: &str, source_path: Option<String>) -> Result<JsValue, JsValue> { |
| 333 | self.run(source, Mode::Exec, source_path) |
| 334 | } |
| 335 | |
| 336 | pub fn eval(&self, source: &str, source_path: Option<String>) -> Result<JsValue, JsValue> { |
| 337 | self.run(source, Mode::Eval, source_path) |