()
| 54 | } |
| 55 | |
| 56 | pub 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected