-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #813 from github/lcartey/scope-performance-fix
`IdentifierHiding`: Improve performance, address some false positives/false negatives
- Loading branch information
Showing
9 changed files
with
416 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- `A2-10-1` - `IdentifierHiding.ql`: | ||
- Improved evaluation performance. | ||
- Addressed false negatives where nested loops used the same variable name. | ||
- Exclude cases where a variable declared in a lambda expression shadowed a global or namespace variable that did not appear in the same translation unit. | ||
- `RULE-5-3` - `IdentifierHidingC.ql`: | ||
- Improved evaluation performance. | ||
- Addressed false negatives where nested loops used the same variable name. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.