(content: &str)
| 322 | use std::collections::{HashMap, HashSet}; |
| 323 | |
| 324 | fn build_source(content: &str) -> Source { |
| 325 | Source { |
| 326 | dir: "dir".to_string(), |
| 327 | files: vec![SourceFile { |
| 328 | name: "file.lisp".to_string(), |
| 329 | contents: content.to_string(), |
| 330 | }], |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | fn build_shadow_env(env_variables: Vec<(&str, &str)>) -> Shadowenv { |
| 335 | let env = env_variables |
no outgoing calls