-
Notifications
You must be signed in to change notification settings - Fork 12.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move AST_MATCHER(VarDecl, isLocal) { return Node.isLocalVarDecl(); }
to ast-matcher
#117431
Comments
Hi! This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below. |
@llvm/issue-subscribers-good-first-issue Author: Congcong Cai (HerrCai0907)
`isLocal` used in some of tidy's check. I think maybe we can move it to some common part. e.g. ast-matcher or clang-tidy/utils folder.
|
@llvm/issue-subscribers-clang-tidy Author: Congcong Cai (HerrCai0907)
`isLocal` used in some of tidy's check. I think maybe we can move it to some common part. e.g. ast-matcher or clang-tidy/utils folder.
|
Most probably checks could switch to hasLocalStorage, and result would be same. |
isLocal will contains static local. |
Hello, could I take up this issue? Thanks! |
hello, can you assign this to me? |
@phychee put up a PR for this already, so I assigned it to them first (sorry). |
isLocal
used in some of tidy's check. I think maybe we can move it to some common part. e.g. ast-matcher or clang-tidy/utils folder.The text was updated successfully, but these errors were encountered: