1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

remove prints

This commit is contained in:
Casper Kuethe 2023-07-30 22:46:31 +02:00 committed by Delyan Angelov
parent efcc94e688
commit 4ac1beda55
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -26,7 +26,6 @@ fn (mut p Parser) sql_expr() ast.Expr {
table_pos := p.tok.pos() table_pos := p.tok.pos()
mut table_type := p.parse_type() // `User` mut table_type := p.parse_type() // `User`
// eprintln('parser: ${table_type} ${table_type.has_flag(.generic)}')
mut where_expr := ast.empty_expr mut where_expr := ast.empty_expr
has_where := p.tok.kind == .name && p.tok.lit == 'where' has_where := p.tok.kind == .name && p.tok.lit == 'where'