mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: remove extraneous call to util.no_dots
This commit is contained in:
@ -2980,7 +2980,7 @@ fn (mut g Gen) infix_expr(node ast.InfixExpr) {
|
||||
}
|
||||
} else if node.op == .arrow {
|
||||
// chan <- val
|
||||
styp := util.no_dots(left_sym.cname)
|
||||
styp := left_sym.cname
|
||||
g.write('__${styp}_pushval(')
|
||||
g.expr(node.left)
|
||||
g.write(', ')
|
||||
|
Reference in New Issue
Block a user