(
&self,
source: &str,
source_path: Option<String>,
)
| 339 | |
| 340 | #[wasm_bindgen(js_name = execSingle)] |
| 341 | pub fn exec_single( |
| 342 | &self, |
| 343 | source: &str, |
| 344 | source_path: Option<String>, |
| 345 | ) -> Result<JsValue, JsValue> { |
| 346 | self.run(source, Mode::Single, source_path) |
| 347 | } |
| 348 | } |