We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f5ec548 + 045a6c3 commit 802a725Copy full SHA for 802a725
3 files changed
python/ql/test/experimental/dataflow/typetracking/mymodule.py
@@ -2,3 +2,6 @@
2
3
def func():
4
return tracked # $tracked
5
+
6
+z = tracked # $tracked
7
+some_func(z) # $tracked
python/ql/test/experimental/dataflow/typetracking/test.py
@@ -54,6 +54,7 @@ def test_import():
54
mymodule.x # $tracked
55
y = mymodule.func() # $tracked
56
y # $tracked
57
+ mymodule.z # $tracked
58
59
# ------------------------------------------------------------------------------
60
python/ql/test/experimental/dataflow/typetracking/tracked.expected
@@ -0,0 +1 @@
1
+| test.py:57:16:57:25 | Comment # $tracked | Missing result:tracked= |
0 commit comments