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
C-bugCategory: Clippy is not doing the correct thingE-mediumCall for participation: Medium difficulty level problem and requires some initial experience.T-middleType: Probably requires verifiying types
If we miss a Lint in the lint_array! of the *LintPass, we will get strange and confusing behavior (like lint warnings + unknown_lint).
This requires walking the call graph and recording any lint symbol on the way. Then checking the get_lints method if all recorded lints are present.
Note that this would be the first lint that is specifically aimed at helping write lints.
The text was updated successfully, but these errors were encountered:
Manishearth
added
C-bug
Category: Clippy is not doing the correct thing
E-medium
Call for participation: Medium difficulty level problem and requires some initial experience.
T-middle
Type: Probably requires verifiying types
labels
Apr 3, 2016
We don't need to follow the call graph, just identify the reachable functions for any LintPass implementation. The naive set-based algorithm should work nicely.
C-bugCategory: Clippy is not doing the correct thingE-mediumCall for participation: Medium difficulty level problem and requires some initial experience.T-middleType: Probably requires verifiying types
If we miss a Lint in the
lint_array!
of the*LintPass
, we will get strange and confusing behavior (like lint warnings +unknown_lint
).This requires walking the call graph and recording any lint symbol on the way. Then checking the
get_lints
method if all recorded lints are present.Note that this would be the first lint that is specifically aimed at helping write lints.
The text was updated successfully, but these errors were encountered: