File tree Expand file tree Collapse file tree
python/ql/test/experimental/dataflow/consistency Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11uniqueEnclosingCallable
2+ | test.py:256:18:256:18 | ControlFlowNode for x | Node should have one enclosing callable but has 2. |
3+ | test.py:256:18:256:18 | SSA variable x | Node should have one enclosing callable but has 2. |
4+ | test.py:256:21:256:25 | ControlFlowNode for False | Node should have one enclosing callable but has 2. |
25uniqueType
36uniqueNodeLocation
47missingLocation
58uniqueNodeToString
69missingToString
710parameterCallable
11+ | test.py:256:18:256:18 | ControlFlowNode for x | Callable mismatch for parameter. |
812localFlowIsLocal
13+ | test.py:256:18:256:18 | ControlFlowNode for x | test.py:256:18:256:18 | SSA variable x | Local flow step does not preserve enclosing callable. |
914compatibleTypesReflexive
1015unreachableNodeCCtx
1116localCallNodes
Original file line number Diff line number Diff line change @@ -249,3 +249,10 @@ def synth_arg_kwOverflow():
249249
250250def synth_arg_kwUnpacked ():
251251 overflowCallee (** {"p" : "42" })
252+
253+ def split_lambda (cond ):
254+ if cond :
255+ pass
256+ foo = lambda x : False
257+ if cond :
258+ pass
You can’t perform that action at this time.
0 commit comments