Major
Detail
Bugfix
Major
Detail
#26382
Error messages "Duplicate tag name..." when starting an application in the IDE from a TL-Studio
#26405
TTypeRewriter logs warning "Unable to resolve items by external reference" also unnecessarily
#26431
Changed superclass relationship leads to changed attribute list in the form editor only after a restart
Bugfix
Detail
#26457
Wrapper generation for modules without singletons leads to broken classes
If a TLModule does not contain a singleton and wrappers are generated for it, this can lead to "broken" wrappers.
The reason is that with #26398 now every type automatically extends tl.model:TLObject. This leads to the fact that the generated wrappers for TLClass'es in which no generalization is specified, no longer extend tl:Wrapper, but only tl:TLObject.
The generated code expects methods Wrapper#getValue(...), Wrapper#setValue(...), Wrapper#getName() which are defined in tl:Wrapper.
Solution
A similar exception is made for tl.model:TLObject as for tl.element:StructuredElement, so that the implementation class of tl.model:TLObject (namely tl:TLObject) is not used.
Test
- Generate wrappers for the DemoPlain module.
- Expectation: The generated wrappers have no compile errors.