Merge remote-tracking branch 'origin/master' into singlepass

This commit is contained in:
losfair
2020-05-11 02:59:50 +08:00
194 changed files with 23365 additions and 2520 deletions

View File

@@ -54,7 +54,7 @@ impl CompilerConfig for SinglepassConfig {
}
/// Transform it into the compiler
fn compiler(&self) -> Box<dyn Compiler> {
fn compiler(&self) -> Box<dyn Compiler + Send> {
Box::new(SinglepassCompiler::new(&self))
}
}