v2: remove test println from checker
parent
ea26b5f30c
commit
bac6fc6ee2
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue