Replies: 1 comment 1 reply
-
I can't indicate what possible disadvantages we would have, I've never used super (for the same reason you opened this thread). From this example super is used to handle ambiguity, but just give different module names and we shouldn't run into problems: I think we can do without it, it probably makes more sense to use it in complex module trees or if one doesn't want to depend on module names in a hardcore way: it's easier to refactor however the IDE's refactoring features are so advanced that I don't think is reason enough. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently all the modules are automatically imported globally. I'd like to remove all or most of the
use super::*
imports to make the module dependencies more clear and when reading the code you won't have to jump to definition to see which module the code comes from.What do you think @CatCode79 ?
Beta Was this translation helpful? Give feedback.
All reactions