(&self, source_hash: &str, settings_hash: &str)
| 1564 | |
| 1565 | impl ScriptDerivedFreshness { |
| 1566 | pub fn is_fresh(&self, source_hash: &str, settings_hash: &str) -> bool { |
| 1567 | self.source_hash == source_hash |
| 1568 | && self.settings_hash == settings_hash |
| 1569 | && self.runtime_version == SCRIPT_RUNTIME_VERSION |
| 1570 | } |
| 1571 | } |
| 1572 | |
| 1573 | pub fn hash_script_source(source: &str) -> String { |
no outgoing calls
no test coverage detected