You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: base/src/main/java/proguard/analysis/cpa/domain/taint/TaintSource.java
+8-7Lines changed: 8 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@
21
21
importjava.util.Objects;
22
22
importjava.util.Set;
23
23
importjava.util.stream.Collectors;
24
+
importproguard.classfile.Signature;
24
25
25
26
/**
26
27
* A {@link TaintSource} specifies a method which can taint any (subset) of the following: the instance, the return value, the argument objects, or static fields.
@@ -30,7 +31,7 @@
30
31
publicclassTaintSource
31
32
{
32
33
33
-
publicfinalStringfqn;
34
+
publicfinalSignaturesignature;
34
35
publicfinalbooleantaintsThis;
35
36
publicfinalbooleantaintsReturn;
36
37
publicfinalSet<Integer> taintsArgs;
@@ -39,15 +40,15 @@ public class TaintSource
39
40
/**
40
41
* Create a taint source.
41
42
*
42
-
* @param fqnthe fully qualified name of a source method
43
+
* @param signature the signature a source method
43
44
* @param taintsThis whether the source taints the calling instance
44
45
* @param taintsReturn whether the source taints its return
45
46
* @param taintsArgs a set of tainted arguments
46
47
* @param taintsGlobals a set of tainted global variables
0 commit comments