v2: remove test println from checker

pull/3919/head
Joe Conigliaro 2020-03-04 09:49:14 +11:00
parent ea26b5f30c
commit bac6fc6ee2
1 changed files with 0 additions and 3 deletions

View File

@ -644,9 +644,6 @@ pub fn (c mut Checker) ident(ident mut ast.Ident) table.Type {
if !name.contains('.') && !(c.file.mod.name in ['builtin', 'main']) { if !name.contains('.') && !(c.file.mod.name in ['builtin', 'main']) {
name = '${c.file.mod.name}.$ident.name' name = '${c.file.mod.name}.$ident.name'
} }
if name.contains('new_v') {
println(' ## $name - $c.file.path - $ident.pos.line_nr')
}
// println('# name: $name') // println('# name: $name')
// constant // constant
if constant := c.table.find_const(name) { if constant := c.table.find_const(name) {