Prevent Module from requiring itself #67
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current
Module_Doc.populate_requires
implementation force a given module to requiring itself.Example with the
wibox.widget
module:This
require
statement creates a cycle. We need to prevent this.