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 4d78762 commit fa0c4e1Copy full SHA for fa0c4e1
python/ql/test/experimental/library-tests/CallGraph/code/func_ref_in_content.py
@@ -50,6 +50,17 @@ def return_func_in_dict_update():
50
dct2['contested']() # $ tt=func2 SPURIOUS: tt=func
51
52
53
+## non-precise access is not supported right now
54
+for k in dct2:
55
+ dct2[k]() # $ MISSING: tt=func tt=func2
56
+
57
+for v in dct2.values():
58
+ v() # $ MISSING: tt=func tt=func2
59
60
+for k, v in dct2.items():
61
62
63
64
def return_func_in_list():
65
return [func, 42]
66
0 commit comments