mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
parent
584597aa3d
commit
70e3c72619
@ -346,13 +346,13 @@ pub fn (x Expr) str() string {
|
||||
return '.$x.val'
|
||||
}
|
||||
FloatLiteral, IntegerLiteral {
|
||||
return x.val
|
||||
return x.val.clone()
|
||||
}
|
||||
GoExpr {
|
||||
return 'go $x.call_expr'
|
||||
}
|
||||
Ident {
|
||||
return x.name
|
||||
return x.name.clone()
|
||||
}
|
||||
IfExpr {
|
||||
mut parts := []string{}
|
||||
|
Loading…
Reference in New Issue
Block a user