File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
* @id rust/diagnostics/ssa-consistency-counts
6
6
*/
7
7
8
- private import codeql.rust.dataflow.internal.SsaImpl as SsaImpl
8
+ private import codeql.rust.dataflow.internal.SsaImpl:: Consistency as SsaConsistency
9
9
10
10
// see also `rust/diagnostics/ssa-consistency`, which lists the
11
11
// individual inconsistency results.
12
12
from string type , int num
13
- where num = SsaImpl :: Consistency :: getInconsistencyCounts ( type )
13
+ where num = SsaConsistency :: getInconsistencyCounts ( type )
14
14
select type , num
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ private import codeql.rust.internal.AstConsistency as AstConsistency
10
10
private import codeql.rust.internal.PathResolutionConsistency as PathResolutionConsistency
11
11
private import codeql.rust.controlflow.internal.CfgConsistency as CfgConsistency
12
12
private import codeql.rust.dataflow.internal.DataFlowConsistency as DataFlowConsistency
13
- private import codeql.rust.dataflow.internal.SsaImpl as SsaImpl
13
+ private import codeql.rust.dataflow.internal.SsaImpl:: Consistency as SsaConsistency
14
14
private import codeql.rust.Concepts
15
15
private import codeql.rust.Diagnostics
16
16
private import codeql.rust.security.SensitiveData
@@ -62,7 +62,7 @@ int getTotalCfgInconsistencies() {
62
62
* Gets a count of the total number of SSA inconsistencies in the database.
63
63
*/
64
64
int getTotalSsaInconsistencies ( ) {
65
- result = sum ( string type | | SsaImpl :: Consistency :: getInconsistencyCounts ( type ) )
65
+ result = sum ( string type | | SsaConsistency :: getInconsistencyCounts ( type ) )
66
66
}
67
67
68
68
/**
You can’t perform that action at this time.
0 commit comments