i-slint-compiler 1.18.0

Internal Slint Compiler Library
Documentation
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0

Abc := Rectangle {
//  ><warning{':=' to declare a component is deprecated. The new syntax declare components with 'component MyComponent {'. Read the documentation for more info}
    function par() {}
}

export Xxx := Rectangle {
//         ><warning{':=' to declare a component is deprecated. The new syntax declare components with 'component MyComponent {'. Read the documentation for more info}
    function fooo(a: int, a: int) -> int { return a; }
//                        ^error{Duplicated argument name 'a'}

    function plop2() -> int {
//  >error{Cannot convert string to int}
        return 45;
        "xxx"
    }
//  <error{Cannot convert string to int}

    function plop3() { return 45; "xxx" }

    function plop4(string: int) -> int {  return "45"; }
//                                        >          <error{Cannot convert string to int}

    function plop5() {  plop4("456") }
//                            >   <error{Cannot convert string to int}


    function background() {}
//           >        <error{Cannot declare function 'background' when a property with the same name exists}


    Abc {
        // 'par' is a private function of Abc, so it isn't visible here and may be shadowed
        property <int> par;
        callback par();
//               > <error{Cannot declare callback 'par' when a property with the same name exists}
    }

    TouchArea {
        function clicked() {}
//               >     <error{Cannot override 'clicked'}
    }

    Abc {  par => {} }
//         > <error{'par' is not a callback in Abc}
    aa := Abc { par: 42; }
//              > <error{Cannot assign to par in Abc because it does not have a valid property type}
    Abc { par <=> aa.par; }
//        > <error{Cannot assign to par in Abc because it does not have a valid property type}
//                   > <^error{The function 'par' is private. Annotate it with 'public' to make it accessible from other components}
//        >             <^^error{Cannot bind to a function}
    fooo => {}
//  >  <error{'fooo' is not a callback in Rectangle}

    function no-body-no-return-type(a: int);
//  >                                      <error{Functions must have a code block}
    function no-body-return-type(a: int) -> int;
//  >                                          <error{Functions must have a code block}

}