From 911a4a80eb7e4d98a96b813ebff3e659d50f040c Mon Sep 17 00:00:00 2001 From: thajohns Date: Thu, 9 Sep 2021 01:16:04 -0400 Subject: formatted some more --- src/lang/parser.rs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src/lang/parser.rs') diff --git a/src/lang/parser.rs b/src/lang/parser.rs index ac7eccd..9204391 100644 --- a/src/lang/parser.rs +++ b/src/lang/parser.rs @@ -14,7 +14,9 @@ macro_rules! dprintln { */ macro_rules! dprintln { - ( $( $x:expr ),* ) => { () } + ( $( $x:expr ),* ) => { + () + }; } #[derive(Debug)] @@ -428,7 +430,11 @@ impl> Parser { ctr = new_ctr; dprintln!("before factory_params comma, tok is {:?}", self.cur_token()); - if self.expect_op(',').map_err(|_e| dprintln!("factory_params consume comma failed: {:?}", e)).is_err() { + if self + .expect_op(',') + .map_err(|_e| dprintln!("factory_params consume comma failed: {:?}", e)) + .is_err() + { dprintln!("factory_params is concluding"); self.expect_op(')')?; break; @@ -459,7 +465,10 @@ impl> Parser { } }; - dprintln!("about to consume param value, token is {:?}", self.cur_token()); + dprintln!( + "about to consume param value, token is {:?}", + self.cur_token() + ); match self.cur_token().clone() { // FIXME: Does this really need to be cloned? -- cgit v1.2.3-70-g09d2