Format Code with rustfmt

This commit is contained in:
j30ng 2019-09-12 04:36:31 +09:00
parent 5ce3f2c056
commit 3b99c07a1e

View file

@ -1619,7 +1619,9 @@ impl<O: OutputStream> Compiler<O> {
Starred { .. } => { Starred { .. } => {
use std::string::String; use std::string::String;
return Err(CompileError { return Err(CompileError {
error: CompileErrorType::SyntaxError(String::from("Invalid starred expression")), error: CompileErrorType::SyntaxError(String::from(
"Invalid starred expression",
)),
location: self.current_source_location.clone(), location: self.current_source_location.clone(),
}); });
} }