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 55 * @id rust/diagnostics/ssa-consistency-counts
66 */
77
8- private import codeql.rust.dataflow.internal.SsaImpl as SsaImpl
8+ private import codeql.rust.dataflow.internal.SsaImpl:: Consistency as SsaConsistency
99
1010// see also `rust/diagnostics/ssa-consistency`, which lists the
1111// individual inconsistency results.
1212from string type , int num
13- where num = SsaImpl :: Consistency :: getInconsistencyCounts ( type )
13+ where num = SsaConsistency :: getInconsistencyCounts ( type )
1414select type , num
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ private import codeql.rust.internal.AstConsistency as AstConsistency
1010private import codeql.rust.internal.PathResolutionConsistency as PathResolutionConsistency
1111private import codeql.rust.controlflow.internal.CfgConsistency as CfgConsistency
1212private 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
1414private import codeql.rust.Concepts
1515private import codeql.rust.Diagnostics
1616private import codeql.rust.security.SensitiveData
@@ -62,7 +62,7 @@ int getTotalCfgInconsistencies() {
6262 * Gets a count of the total number of SSA inconsistencies in the database.
6363 */
6464int getTotalSsaInconsistencies ( ) {
65- result = sum ( string type | | SsaImpl :: Consistency :: getInconsistencyCounts ( type ) )
65+ result = sum ( string type | | SsaConsistency :: getInconsistencyCounts ( type ) )
6666}
6767
6868/**
You can’t perform that action at this time.
0 commit comments