File tree 2 files changed +6
-6
lines changed
python/ql/test/experimental/dataflow/regression 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 10
10
| test.py:76:9:76:14 | ControlFlowNode for SOURCE | test.py:78:10:78:10 | ControlFlowNode for t |
11
11
| test.py:128:13:128:18 | ControlFlowNode for SOURCE | test.py:132:14:132:14 | ControlFlowNode for t |
12
12
| test.py:159:10:159:15 | ControlFlowNode for SOURCE | test.py:160:14:160:14 | ControlFlowNode for t |
13
- | test.py:163:9:163:14 | ControlFlowNode for SOURCE | test.py:165:10 :165:10 | ControlFlowNode for s |
13
+ | test.py:163:9:163:14 | ControlFlowNode for SOURCE | test.py:165:12 :165:12 | ControlFlowNode for s |
14
14
| test.py:178:9:178:14 | ControlFlowNode for SOURCE | test.py:180:14:180:14 | ControlFlowNode for t |
15
- | test.py:178:9:178:14 | ControlFlowNode for SOURCE | test.py:182:14 :182:14 | ControlFlowNode for t |
16
- | test.py:178:9:178:14 | ControlFlowNode for SOURCE | test.py:184:14 :184:14 | ControlFlowNode for t |
15
+ | test.py:178:9:178:14 | ControlFlowNode for SOURCE | test.py:182:16 :182:16 | ControlFlowNode for t |
16
+ | test.py:178:9:178:14 | ControlFlowNode for SOURCE | test.py:184:16 :184:16 | ControlFlowNode for t |
17
17
| test.py:178:9:178:14 | ControlFlowNode for SOURCE | test.py:186:14:186:14 | ControlFlowNode for t |
18
18
| test.py:195:9:195:14 | ControlFlowNode for SOURCE | test.py:197:14:197:14 | ControlFlowNode for t |
19
19
| test.py:195:9:195:14 | ControlFlowNode for SOURCE | test.py:199:14:199:14 | ControlFlowNode for t |
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ def test7(cond):
40
40
if cond :
41
41
SINK (t )
42
42
43
- def source2 (arg ):
44
- return source (arg )
43
+ def source2 ():
44
+ return source ()
45
45
46
46
def sink2 (arg ):
47
47
sink (arg )
@@ -50,7 +50,7 @@ def sink3(cond, arg):
50
50
if cond :
51
51
sink (arg )
52
52
53
- def test8 (cond ): # This flow is shadowed by previous tests, perhaps do a path query
53
+ def test8 (cond ):
54
54
t = source2 ()
55
55
sink2 (t )
56
56
You can’t perform that action at this time.
0 commit comments