Remove repeated imports from generated code (#31711)

* feat: try to deduplicate imports in codegen

* feat: another attempt

* feat: start testing imports

* feat: clean all global imports

* feat: remove shared imports from CGDescriptor

* feat: remove redundant imports from CGDescriptor

* fix: formatting

* fix: remove libc (base level import)

* feat: roll back named path changes

* feat: last changes and tidy

* experiment: move imports into a separate file

* fix: extra parenthesis

* fix: remove repeated allow statement
This commit is contained in:
eri 2024-03-21 14:38:16 +01:00 committed by GitHub
parent f5c4988dcb
commit 8c7e9a15e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 180 additions and 364 deletions

View file

@ -143,6 +143,7 @@ pub mod error;
pub mod finalize;
pub mod guard;
pub mod htmlconstructor;
pub mod import;
pub mod inheritance;
pub mod interface;
pub mod iterable;