MCPcopy Create free account
hub / github.com/TheRedDeveloper/ply-engine / handler_dep_globs_cached

Function handler_dep_globs_cached

src/shader_build.rs:396–401  ·  view source on GitHub ↗
(hashes: &HashMap<String, String>, dep_key: &str)

Source from the content-addressed store, hash-verified

394}
395
396fn handler_dep_globs_cached(hashes: &HashMap<String, String>, dep_key: &str) -> Vec<String> {
397 match hashes.get(dep_key) {
398 Some(json_str) => parse_string_array(json_str),
399 None => vec![],
400 }
401}
402
403fn parse_string_array(json: &str) -> Vec<String> {
404 let trimmed = json.trim();

Callers 1

buildMethod · 0.85

Calls 2

parse_string_arrayFunction · 0.85
getMethod · 0.80

Tested by

no test coverage detected