From 5b76f7a838bf869872811c52c26c9ee9f01585b6 Mon Sep 17 00:00:00 2001 From: Valentin Anger Date: Thu, 14 May 2020 20:10:54 +0200 Subject: Remove debug prints introduced in e18aaf49c (#5356) --- cli/doc/parser.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'cli/doc/parser.rs') diff --git a/cli/doc/parser.rs b/cli/doc/parser.rs index 0ab3c8d34..0e58e4b0a 100644 --- a/cli/doc/parser.rs +++ b/cli/doc/parser.rs @@ -265,10 +265,7 @@ impl DocParser { vec![doc_node] } - ModuleDecl::ExportDefaultExpr(export_default_expr) => { - eprintln!("export default expr {:#?}", export_default_expr); - vec![] - } + ModuleDecl::ExportDefaultExpr(_export_default_expr) => vec![], _ => vec![], } } @@ -455,7 +452,6 @@ impl DocParser { if let swc_ecma_ast::ModuleItem::ModuleDecl(module_decl) = node { let r = match module_decl { ModuleDecl::ExportNamed(named_export) => { - eprintln!("export named {:#?}", named_export); if let Some(src) = &named_export.src { let src_str = src.value.to_string(); named_export -- cgit v1.2.3