File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ private predicate maybe_call_to_exiting_function(CallNode call) {
127127/** Prune edges where the predecessor block looks like it might contain a call to an exit function. */
128128class ExitFunctionGuardedEdge extends DataFlowExtension:: DataFlowVariable {
129129
130- predicate prunedSuccessor ( EssaVariable succ ) {
130+ override predicate prunedSuccessor ( EssaVariable succ ) {
131131 exists ( CallNode exit_call |
132132 succ .( PhiFunction ) .getInput ( exit_call .getBasicBlock ( ) ) = this and
133133 maybe_call_to_exiting_function ( exit_call )
Original file line number Diff line number Diff line change @@ -91,11 +91,11 @@ class SensitiveDataSource extends TaintSource {
9191 this .( ControlFlowNode ) .getNode ( ) instanceof SensitiveExpr
9292 }
9393
94- string toString ( ) {
94+ override string toString ( ) {
9595 result = "sensitive.data.source"
9696 }
9797
98- predicate isSourceOf ( TaintKind kind ) {
98+ override predicate isSourceOf ( TaintKind kind ) {
9999 kind instanceof SensitiveData
100100 }
101101
You can’t perform that action at this time.
0 commit comments