- Notifications
You must be signed in to change notification settings - Fork1.7k
Rust: upgrade to rust 1.88 and rust-analyzer 0.0.294#20055
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
@@ -4,6 +4,20 @@ | |||
query predicate instances(AsmExpr x) { toBeTested(x) and not x.isUnknown() } | |||
query predicate getExtendedCanonicalPath(AsmExpr x, string getExtendedCanonicalPath) { |
Check warning
Code scanning / CodeQL
Predicates starting with "get" or "as" should return a value Warning generated test
toBeTested(x) and not x.isUnknown() and getExtendedCanonicalPath = x.getExtendedCanonicalPath() | ||
} | ||
query predicate getCrateOrigin(AsmExpr x, string getCrateOrigin) { |
Check warning
Code scanning / CodeQL
Predicates starting with "get" or "as" should return a value Warning generated test
toBeTested(x) and not x.isUnknown() and getCrateOrigin = x.getCrateOrigin() | ||
} | ||
query predicate getAttributeMacroExpansion(AsmExpr x, MacroItems getAttributeMacroExpansion) { |
Check warning
Code scanning / CodeQL
Predicates starting with "get" or "as" should return a value Warning generated test
No description provided.