Remove commented-out debug code

This commit is contained in:
Chris Smowton 2022-05-10 14:35:10 +01:00
Родитель d330033908
Коммит 3129c3dd69
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -1101,7 +1101,6 @@ func extractExprs(tw *trap.Writer, exprs []ast.Expr, parent trap.Label, idx int,
func extractTypeOf(tw *trap.Writer, expr ast.Expr, lbl trap.Label) {
tp := typeOf(tw, expr)
if tp != nil {
// log.Printf("Extracting type of expr %v", expr)
tplbl := extractType(tw, tp)
dbscheme.TypeOfTable.Emit(tw, lbl, tplbl)
}