Conversation
| import codeql.files.FileSystem | ||
| import codeql.rust.elements.Abi | ||
| import codeql.rust.elements.Addressable | ||
| import codeql.rust.elements.Adt |
Check warning
Code scanning / CodeQL
Redundant import Warning
| */ | ||
|
|
||
| private import internal.AdtImpl | ||
| import codeql.rust.elements.Item |
Check warning
Code scanning / CodeQL
Redundant import Warning
|
|
||
| private import internal.AdtImpl | ||
| import codeql.rust.elements.Item | ||
| import codeql.rust.elements.MacroItems |
Check warning
Code scanning / CodeQL
Redundant import Warning
|
|
||
| from .prelude import * | ||
|
|
||
| class Adt(AstNode, ): |
There was a problem hiding this comment.
that's already done in the annotations
codeql/rust/schema/annotations.py
Line 19 in 52c0028
|
|
||
| from .prelude import * | ||
|
|
||
| class Adt(AstNode, ): |
There was a problem hiding this comment.
Thanks! Your are changing things faster than I can review them ;-)
9f6e446 to
f4bdd4d
Compare
|
@aibaars DCA shows a significant increase of warnings on What do you think, shall we accept that for now, and investigate those three repos later? |
| | main.rs:1928:41:1928:59 | ...::Foo {...} | | main.rs:72:5:72:21 | Foo | | ||
| | main.rs:1944:5:1944:15 | ...::f(...) | | {EXTERNAL LOCATION} | trait Future | | ||
| testFailures | ||
| | main.rs:2:5:2:20 | f.write_str(...) | Unexpected result: method=write_str | |
There was a problem hiding this comment.
You've allowed some test failures without updating the annotations in the .rs file. This isn't a good state to leave things in as the annotations are now misleading. Is there a plan to fix these?
No description provided.