summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/diagnostics.rs
diff options
context:
space:
mode:
authoryukang <moorekang@gmail.com>2023-03-14 23:48:33 +0800
committeryukang <moorekang@gmail.com>2023-05-01 16:15:17 +0800
commit1b08eaca200ea5c7f6455b0302e031b479fb33dc (patch)
tree650c48bb6f2cff09acc63aaa817d7c6c1ae49d94 /compiler/rustc_parse/src/parser/diagnostics.rs
parent10512b2932ba91ddde1ab92c6bb9662f751092c3 (diff)
downloadrust-1b08eaca200ea5c7f6455b0302e031b479fb33dc.tar.gz
rust-1b08eaca200ea5c7f6455b0302e031b479fb33dc.zip
clean up debug code
Diffstat (limited to 'compiler/rustc_parse/src/parser/diagnostics.rs')
-rw-r--r--compiler/rustc_parse/src/parser/diagnostics.rs11
1 files changed, 1 insertions, 10 deletions
diff --git a/compiler/rustc_parse/src/parser/diagnostics.rs b/compiler/rustc_parse/src/parser/diagnostics.rs
index bcc76c20815..aad7d21e1b4 100644
--- a/compiler/rustc_parse/src/parser/diagnostics.rs
+++ b/compiler/rustc_parse/src/parser/diagnostics.rs
@@ -1775,21 +1775,13 @@ impl<'a> Parser<'a> {
         lo: Span,
         result: PResult<'a, P<Expr>>,
     ) -> P<Expr> {
-        use crate::parser::DUMMY_NODE_ID;
         match result {
             Ok(x) => x,
             Err(mut err) => {
                 err.emit();
                 // Recover from parse error, callers expect the closing delim to be consumed.
                 self.consume_block(delim, ConsumeClosingDelim::Yes);
-                debug!("recover_seq_parse_error: consumed tokens until {:?} {:?}", lo, self.token);
-                let res = self.mk_expr(lo.to(self.prev_token.span), ExprKind::Err);
-                if res.id == DUMMY_NODE_ID {
-                    //panic!("debug now ....: {:?}", res);
-                    res
-                } else {
-                    res
-                }
+                self.mk_expr(lo.to(self.prev_token.span), ExprKind::Err)
             }
         }
     }
@@ -1871,7 +1863,6 @@ impl<'a> Parser<'a> {
                         && brace_depth == 0
                         && bracket_depth == 0 =>
                 {
-                    debug!("recover_stmt_ return - Comma");
                     break;
                 }
                 _ => self.bump(),