From 130324df76ddad4809af544a18e511ef5ea626aa Mon Sep 17 00:00:00 2001 From: eyelash Date: Sat, 2 May 2020 00:10:36 +0200 Subject: [PATCH] compiler: remove debug prints --- vlib/v/gen/cgen.v | 1 - vlib/v/parser/struct.v | 1 - 2 files changed, 2 deletions(-) diff --git a/vlib/v/gen/cgen.v b/vlib/v/gen/cgen.v index edb649f1cb..98b61ed1bd 100644 --- a/vlib/v/gen/cgen.v +++ b/vlib/v/gen/cgen.v @@ -3349,7 +3349,6 @@ fn (v &Gen) interface_table() string { continue } info := t.info as table.Interface - println(info.gen_types) // interface_name is for example Speaker interface_name := t.name.replace('.', '__') mut methods := '' diff --git a/vlib/v/parser/struct.v b/vlib/v/parser/struct.v index 6732c4ca9c..dedef9353a 100644 --- a/vlib/v/parser/struct.v +++ b/vlib/v/parser/struct.v @@ -276,7 +276,6 @@ fn (mut p Parser) interface_decl() ast.InterfaceDecl { for p.tok.kind != .rcbr && p.tok.kind != .eof { line_nr := p.tok.line_nr name := p.check_name() - println(name) // field_names << name args2, _ := p.fn_args() mut args := [table.Arg{