slint/internal/compiler/generator
Olivier Goffart e0ca9dfd76 Fixes rust generated code when taking expression of void callback
code like so:
```slint
callback foo();
if true : Button {
   clicked => {
      true ? foo() : foo();
   }
}
```

the code like foo() use the `option.map()`  to get to the parent, but then it
needs to still be wrapped in a `{...}` to convert that to a `()` expression

Fixes #5883
2024-08-21 11:52:15 +02:00
..
cpp.rs Compile the multiple-includes test with a header-only build of appwindow.slint 2024-08-20 15:53:24 +02:00
rust.rs Fixes rust generated code when taking expression of void callback 2024-08-21 11:52:15 +02:00