We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413f194 commit 0fac4f1Copy full SHA for 0fac4f1
python/ql/src/experimental/semmle/python/Concepts.qll
@@ -27,7 +27,11 @@ module CopyFile {
27
/**
28
* Gets the argument containing the path.
29
*/
30
- abstract DataFlow::Node getAPathArgument();
+ abstract DataFlow::Node getAPathArgument();
31
+ /**
32
+ * Gets fsrc argument.
33
+ */
34
+ abstract DataFlow::Node getfsrcArgument();
35
}
36
37
@@ -43,6 +47,8 @@ class CopyFile extends DataFlow::Node {
43
47
CopyFile() { this = range }
44
48
45
49
DataFlow::Node getAPathArgument() { result = range.getAPathArgument() }
50
+
51
+ DataFlow::Node getfsrcArgument() { result = range.getfsrcArgument() }
46
52
53
54
/** Provides classes for modeling log related APIs. */
0 commit comments