(&mut self)
| 114 | } |
| 115 | |
| 116 | pub fn clear(&mut self) { |
| 117 | self.scripts.clear(); |
| 118 | } |
| 119 | |
| 120 | pub fn compile_add_script(&mut self, script: Script) -> Result<ScriptState, String> { |
| 121 | let prefixed_source = prepend_script_source_header(&script.original_source, Some(&script)); |
no outgoing calls
no test coverage detected