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 @@ -330,33 +330,6 @@ private module Cached {
330330import Cached
331331private import codeql.rust.dataflow.Ssa
332332
333- /**
334- * An extended static single assignment (SSA) definition.
335- *
336- * This is either a normal SSA definition (`Definition`) or a
337- * phi-read node (`PhiReadNode`).
338- *
339- * Only intended for internal use.
340- */
341- class DefinitionExt extends Impl:: DefinitionExt {
342- CfgNode getARead ( ) { result = getARead ( this ) }
343-
344- override string toString ( ) { result = this .( Ssa:: Definition ) .toString ( ) }
345-
346- override Location getLocation ( ) { result = this .( Ssa:: Definition ) .getLocation ( ) }
347- }
348-
349- /**
350- * A phi-read node.
351- *
352- * Only intended for internal use.
353- */
354- class PhiReadNode extends DefinitionExt , Impl:: PhiReadNode {
355- override string toString ( ) { result = "SSA phi read(" + this .getSourceVariable ( ) + ")" }
356-
357- override Location getLocation ( ) { result = Impl:: PhiReadNode .super .getLocation ( ) }
358- }
359-
360333private module DataFlowIntegrationInput implements Impl:: DataFlowIntegrationInputSig {
361334 class Expr extends CfgNodes:: AstCfgNode {
362335 predicate hasCfgNode ( SsaInput:: BasicBlock bb , int i ) { this = bb .getNode ( i ) }
You can’t perform that action at this time.
0 commit comments