File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
python/ql/src/experimental/semmle/python Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ private import semmle.python.dataflow.new.RemoteFlowSources
14
14
private import semmle.python.dataflow.new.TaintTracking
15
15
private import experimental.semmle.python.Frameworks
16
16
17
-
18
17
/** Provides classes for modeling copying file related APIs. */
19
18
module CopyFile {
20
19
/**
@@ -27,7 +26,8 @@ module CopyFile {
27
26
/**
28
27
* Gets the argument containing the path.
29
28
*/
30
- abstract DataFlow:: Node getAPathArgument ( ) ;
29
+ abstract DataFlow:: Node getAPathArgument ( ) ;
30
+
31
31
/**
32
32
* Gets fsrc argument.
33
33
*/
@@ -47,7 +47,7 @@ class CopyFile extends DataFlow::Node {
47
47
CopyFile ( ) { this = range }
48
48
49
49
DataFlow:: Node getAPathArgument ( ) { result = range .getAPathArgument ( ) }
50
-
50
+
51
51
DataFlow:: Node getfsrcArgument ( ) { result = range .getfsrcArgument ( ) }
52
52
}
53
53
@@ -79,6 +79,7 @@ class LogOutput extends DataFlow::Node {
79
79
LogOutput ( ) { this = range }
80
80
81
81
DataFlow:: Node getAnInput ( ) { result = range .getAnInput ( ) }
82
+ }
82
83
83
84
/**
84
85
* Since there is both XML module in normal and experimental Concepts,
You can’t perform that action at this time.
0 commit comments