MCPcopy Create free account
hub / github.com/ControlCplusControlV/Scribe / load_all_procs

Function load_all_procs

crates/papyrus/src/utils.rs:56–67  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

54}
55
56pub fn load_all_procs() -> String {
57 static MASM_DIR: Dir<'_> = include_dir!("$CARGO_MANIFEST_DIR/src/miden_asm");
58 MASM_DIR
59 .files()
60 .filter_map(|file| {
61 if file.path().extension().unwrap().to_str() == Some("masm") {
62 return file.contents_utf8();
63 }
64 None
65 })
66 .join("\n")
67}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected