mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-01 12:24:16 +00:00
eg, don't report an error for each callback or animation or changed event that the the property doesn't exist or such. Also reword the message when an element doesn't exist. Use "element" rather than "type" as it is more accurate.
15 lines
No EOL
604 B
Text
15 lines
No EOL
604 B
Text
// 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
|
|
|
|
import { Qq } from "../../typeloader/incpath/bug_2719_import.slint";
|
|
|
|
import { SomeRect } from "tests/typeloader/incpath/local_helper_type.slint";
|
|
// ^warning{Loading "tests/typeloader/incpath/local_helper_type.slint" relative to the work directory is deprecated. Files should be imported relative to their import location}
|
|
|
|
|
|
export component X {
|
|
Qq { }
|
|
SomeRect { }
|
|
Yy { }
|
|
// ^error{Unknown element 'Yy'}
|
|
} |