File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
python/ql/test/library-tests/PointsTo/calls Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 16
16
| 37 | 0 | ControlFlowNode for l | builtin method append |
17
17
| 37 | 1 | ControlFlowNode for IntegerLiteral | builtin method append |
18
18
| 38 | 0 | ControlFlowNode for l | Builtin-function len |
19
+ | 40 | 0 | ControlFlowNode for IntegerLiteral | Function f |
20
+ | 40 | 1 | ControlFlowNode for IntegerLiteral | Function f |
21
+ | 40 | 2 | ControlFlowNode for IntegerLiteral | Function f |
22
+ | 42 | 0 | ControlFlowNode for IntegerLiteral | Function C.n |
23
+ | 42 | 0 | ControlFlowNode for c | Function C.n |
Original file line number Diff line number Diff line change 10
10
| 34 | ControlFlowNode for D() | class D |
11
11
| 37 | ControlFlowNode for Attribute() | Method(builtin method append, List) |
12
12
| 38 | ControlFlowNode for len() | Builtin-function len |
13
+ | 40 | ControlFlowNode for f() | Function f |
14
+ | 41 | ControlFlowNode for C() | class C |
15
+ | 42 | ControlFlowNode for Attribute() | Method(Function C.n, C()) |
Original file line number Diff line number Diff line change 13
13
| 37 | ControlFlowNode for Attribute() | Method(builtin method append, List) |
14
14
| 37 | ControlFlowNode for Attribute() | builtin method append |
15
15
| 38 | ControlFlowNode for len() | Builtin-function len |
16
+ | 40 | ControlFlowNode for f() | Function f |
17
+ | 41 | ControlFlowNode for C() | class C |
18
+ | 42 | ControlFlowNode for Attribute() | Function C.n |
19
+ | 42 | ControlFlowNode for Attribute() | Method(Function C.n, C()) |
Original file line number Diff line number Diff line change @@ -36,3 +36,7 @@ def foo(arg):
36
36
l = [1 ,2 ,3 ]
37
37
l .append (4 )
38
38
len (l )
39
+
40
+ f (arg0 = 0 , arg1 = 1 , arg2 = 2 )
41
+ c = C ()
42
+ c .n (arg1 = 1 )
You can’t perform that action at this time.
0 commit comments