@@ -128,12 +128,15 @@ private predicate isArgumentForCall(ExprCfgNode arg, CallExprBaseCfgNode call, P
128
128
arg = call .( MethodCallExprCfgNode ) .getReceiver ( ) and pos .isSelf ( )
129
129
}
130
130
131
+ /**
132
+ * Provides the `Node` class and subclasses thereof.
133
+ *
134
+ * Classes with names ending in `Public` are exposed as `final` aliases in the
135
+ * public `DataFlow` API, so they should not expose internal implementation details.
136
+ */
131
137
module Node {
132
- /**
133
- * An element, viewed as a node in a data flow graph. Either an expression
134
- * (`ExprNode`) or a parameter (`ParameterNode`).
135
- */
136
- abstract class Node extends TNode {
138
+ /** An element, viewed as a node in a data flow graph. */
139
+ abstract class NodePublic extends TNode {
137
140
/** Gets the location of this node. */
138
141
abstract Location getLocation ( ) ;
139
142
@@ -149,7 +152,9 @@ module Node {
149
152
* Gets the pattern that corresponds to this node, if any.
150
153
*/
151
154
PatCfgNode asPat ( ) { none ( ) }
155
+ }
152
156
157
+ abstract class Node extends NodePublic {
153
158
/** Gets the enclosing callable. */
154
159
DataFlowCallable getEnclosingCallable ( ) { result = TCfgScope ( this .getCfgScope ( ) ) }
155
160
@@ -160,11 +165,6 @@ module Node {
160
165
* Gets the control flow node that corresponds to this data flow node.
161
166
*/
162
167
CfgNode getCfgNode ( ) { none ( ) }
163
-
164
- /**
165
- * Gets this node's underlying SSA definition, if any.
166
- */
167
- Ssa:: Definition asDefinition ( ) { none ( ) }
168
168
}
169
169
170
170
/** A node type that is not implemented. */
@@ -462,10 +462,12 @@ module Node {
462
462
* Nodes corresponding to AST elements, for example `ExprNode`, usually refer
463
463
* to the value before the update.
464
464
*/
465
- abstract class PostUpdateNode extends Node {
465
+ abstract class PostUpdateNodePublic extends NodePublic {
466
466
/** Gets the node before the state update. */
467
- abstract Node getPreUpdateNode ( ) ;
467
+ abstract NodePublic getPreUpdateNode ( ) ;
468
+ }
468
469
470
+ abstract class PostUpdateNode extends PostUpdateNodePublic , Node {
469
471
override string toString ( ) { result = "[post] " + this .getPreUpdateNode ( ) .toString ( ) }
470
472
}
471
473
@@ -857,12 +859,13 @@ private module Aliases {
857
859
858
860
module RustDataFlow implements InputSig< Location > {
859
861
private import Aliases
862
+ private import codeql.rust.dataflow.DataFlow
860
863
861
864
/**
862
865
* An element, viewed as a node in a data flow graph. Either an expression
863
866
* (`ExprNode`) or a parameter (`ParameterNode`).
864
867
*/
865
- final class Node = Node :: Node ;
868
+ class Node = DataFlow :: Node ;
866
869
867
870
final class ParameterNode = Node:: ParameterNode ;
868
871
@@ -872,7 +875,7 @@ module RustDataFlow implements InputSig<Location> {
872
875
873
876
final class OutNode = Node:: OutNode ;
874
877
875
- final class PostUpdateNode = Node :: PostUpdateNode ;
878
+ class PostUpdateNode = DataFlow :: PostUpdateNode ;
876
879
877
880
final class CastNode = Node:: NaNode ;
878
881
@@ -886,7 +889,9 @@ module RustDataFlow implements InputSig<Location> {
886
889
n .isArgumentOf ( call , pos )
887
890
}
888
891
889
- DataFlowCallable nodeGetEnclosingCallable ( Node node ) { result = node .getEnclosingCallable ( ) }
892
+ DataFlowCallable nodeGetEnclosingCallable ( Node node ) {
893
+ result = node .( Node:: Node ) .getEnclosingCallable ( )
894
+ }
890
895
891
896
DataFlowType getNodeType ( Node node ) { any ( ) }
892
897
@@ -901,9 +906,9 @@ module RustDataFlow implements InputSig<Location> {
901
906
}
902
907
903
908
predicate neverSkipInPathGraph ( Node node ) {
904
- node .getCfgNode ( ) = any ( LetStmtCfgNode s ) .getPat ( )
909
+ node .( Node :: Node ) . getCfgNode ( ) = any ( LetStmtCfgNode s ) .getPat ( )
905
910
or
906
- node .getCfgNode ( ) = any ( AssignmentExprCfgNode a ) .getLhs ( )
911
+ node .( Node :: Node ) . getCfgNode ( ) = any ( AssignmentExprCfgNode a ) .getLhs ( )
907
912
or
908
913
exists ( MatchExprCfgNode match |
909
914
node .asExpr ( ) = match .getScrutinee ( ) or
0 commit comments