File tree Expand file tree Collapse file tree 1 file changed +0
-27
lines changed
rust/ql/lib/codeql/rust/dataflow/internal Expand file tree Collapse file tree 1 file changed +0
-27
lines changed Original file line number Diff line number Diff line change @@ -336,33 +336,6 @@ private module Cached {
336336import Cached
337337private import codeql.rust.dataflow.Ssa
338338
339- /**
340- * An extended static single assignment (SSA) definition.
341- *
342- * This is either a normal SSA definition (`Definition`) or a
343- * phi-read node (`PhiReadNode`).
344- *
345- * Only intended for internal use.
346- */
347- class DefinitionExt extends Impl:: DefinitionExt {
348- CfgNode getARead ( ) { result = getARead ( this ) }
349-
350- override string toString ( ) { result = this .( Ssa:: Definition ) .toString ( ) }
351-
352- override Location getLocation ( ) { result = this .( Ssa:: Definition ) .getLocation ( ) }
353- }
354-
355- /**
356- * A phi-read node.
357- *
358- * Only intended for internal use.
359- */
360- class PhiReadNode extends DefinitionExt , Impl:: PhiReadNode {
361- override string toString ( ) { result = "SSA phi read(" + this .getSourceVariable ( ) + ")" }
362-
363- override Location getLocation ( ) { result = Impl:: PhiReadNode .super .getLocation ( ) }
364- }
365-
366339private module DataFlowIntegrationInput implements Impl:: DataFlowIntegrationInputSig {
367340 class Expr extends CfgNodes:: AstCfgNode {
368341 predicate hasCfgNode ( SsaInput:: BasicBlock bb , int i ) { this = bb .getNode ( i ) }
You can’t perform that action at this time.
0 commit comments