Make ScopeResolver struct

This commit is contained in:
greg
2019-09-03 02:59:19 -07:00
parent 724237545f
commit cefaeb1180
3 changed files with 27 additions and 16 deletions

View File

@@ -45,7 +45,7 @@ pub fn start_repl(langs: Vec<Box<dyn ProgrammingLanguageInterface>>) {
let mut repl = repl::Repl::new(langs);
repl.run_repl();
}
[_, ref filename, _..] => {
[_, ref filename, ..] => {
run_noninteractive(filename, langs);
}
};