You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
references.zig uses DocumentStore.collectDependencies which collects the imports a file specifies; this incorrect - we should be collecting dependents (files that import the current file), not dependencies (files that the current file imports).
To take this on you'd have to create a new collectDependents function that loads in all files in a workspace while checking for imports and returns all files that import the current file.
The text was updated successfully, but these errors were encountered:
references.zig
usesDocumentStore.collectDependencies
which collects the imports a file specifies; this incorrect - we should be collecting dependents (files that import the current file), not dependencies (files that the current file imports).To take this on you'd have to create a new
collectDependents
function that loads in all files in a workspace while checking for imports and returns all files that import the current file.The text was updated successfully, but these errors were encountered: