cgen: fix error of reference struct str() (#12061)
parent
a8c2c419cd
commit
03269f9854
|
@ -883,6 +883,10 @@ fn (mut g Gen) method_call(node ast.CallExpr) {
|
||||||
// }
|
// }
|
||||||
if !node.receiver_type.is_ptr() && node.left_type.is_ptr() && node.name == 'str' {
|
if !node.receiver_type.is_ptr() && node.left_type.is_ptr() && node.name == 'str' {
|
||||||
g.write('ptr_str(')
|
g.write('ptr_str(')
|
||||||
|
} else if node.receiver_type.is_ptr() && node.left_type.is_ptr() && node.name == 'str'
|
||||||
|
&& !left_sym.has_method('str') {
|
||||||
|
g.gen_expr_to_string(node.left, node.left_type)
|
||||||
|
return
|
||||||
} else {
|
} else {
|
||||||
if left_sym.kind == .array {
|
if left_sym.kind == .array {
|
||||||
if array_depth >= 0 {
|
if array_depth >= 0 {
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
struct Example {
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test_str_reference_struct() {
|
||||||
|
c1 := Example{}
|
||||||
|
println((&c1).str())
|
||||||
|
assert (&c1).str() == '&Example{}'
|
||||||
|
|
||||||
|
c2 := &Example{}
|
||||||
|
println(c2.str())
|
||||||
|
assert c2.str() == '&Example{}'
|
||||||
|
}
|
Loading…
Reference in New Issue