| 13 | pub mod promises; |
| 14 | |
| 15 | pub trait ScriptPreProcessor { |
| 16 | fn process(&self, script: &mut Script) -> Result<(), JsError>; |
| 17 | } |
| 18 | |
| 19 | /// the JsValueType represents the type of value for a JSValue |
| 20 | #[derive(PartialEq, Copy, Clone, Eq)] |
nothing calls this directly
no outgoing calls
no test coverage detected