From 3b99c07a1efcca480a3aa1860ab45aa4d122d7db Mon Sep 17 00:00:00 2001 From: j30ng Date: Thu, 12 Sep 2019 04:36:31 +0900 Subject: [PATCH] Format Code with rustfmt --- src/compile.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/compile.rs b/src/compile.rs index b42496a..cf6405d 100644 --- a/src/compile.rs +++ b/src/compile.rs @@ -1619,7 +1619,9 @@ impl Compiler { Starred { .. } => { use std::string::String; 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(), }); }