From c8dca072dd512b7d869e2b2034009e2a390e1344 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sat, 13 Aug 2022 21:20:50 +0200 Subject: [PATCH] remove println --- backend/src/parser_ts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/parser_ts.rs b/backend/src/parser_ts.rs index a87dc17d2c..ae47dafb6e 100644 --- a/backend/src/parser_ts.rs +++ b/backend/src/parser_ts.rs @@ -114,7 +114,7 @@ fn binding_ident_to_arg(BindingIdent { id, type_ann }: &BindingIdent) -> (String } fn tstype_to_typ(ts_type: &TsType) -> (Typ, bool) { - println!("{:?}", ts_type); + //println!("{:?}", ts_type); match ts_type { TsType::TsKeywordType(t) => ( match t.kind {