major
nice-to-have
minor
#25217
Layout-Export führt zu invaliden Komponenten-Referenzen bei Referenzierung einer bestehenden Komponente
#25327
Modell-Editor: Falsche Kompositionsmarker, wenn Container-Typ in Diagramm von Content-Typ gezogen wird
enhancement
A TL-Script function cannot currently explicitly signal an error. In some contexts, therefore, a specific return value is interpreted as an error and converted into an error by the code that evaluates the TL script—for example, a non-zero return value from a command handler script.
Improvement
- throw(...) terminates execution and displays an error message on the GUI.
- info(...) does not terminate processing but displays an informational message on the GUI.
Test
- Configure a command that executes the script {throw("Error!", "Things went terribly wrong"); info("Swallowed"); }. The expected result is the error message; the info message must not be displayed.
- Configure a command that evaluates the script {info("A"); info("B"); }. The expected result is that both messages, "A" and "B," are displayed.