move PassController

This commit is contained in:
nora 2022-12-20 18:03:51 +01:00
parent 64da92ab9e
commit a50131cf64
3 changed files with 200 additions and 198 deletions

View file

@ -66,7 +66,7 @@ impl RustFunction {
let source_path = file.path().join("source.rs");
std::fs::write(&source_path, &full_file).context("writing source")?;
std::fs::write(&source_path, full_file).context("writing source")?;
let mut rustc = Command::new("rustc");
rustc.arg(source_path);