slint/internal/compiler/tests
Olivier Goffart ac8fd60091 Fix regression with empty array
Regression noticed in this line:
3f97d98bff/ui/tabs/downloads.slint (L77)

The following used to work:

```slint
import { Button, VerticalBox } from "std-widgets.slint";
export component Demo {
    in property <[int]> mods;
    VerticalBox {
        alignment: start;
        for xxx in true ? mods : [] : HorizontalLayout { alignment: center; Button { text: "OK!"; } }
    }
}
```

But we fixed array conversion and this caused a regression with empty
array
2023-11-01 11:30:59 +01:00
..
syntax Fix regression with empty array 2023-11-01 11:30:59 +01:00
typeloader Allow specifying paths for @library imports 2023-10-20 16:47:00 +02:00
consistent_styles.rs compiler: Fix loading relative path to the workdir 2023-07-24 18:21:53 +02:00
syntax_tests.rs compiler: Rework path handling 2023-10-10 20:04:47 +02:00