Python: type-track through tuple content

This commit is contained in:
Rasmus Wriedt Larsen
2024-02-23 13:39:49 +01:00
parent a95bb7c86b
commit ece8245a4b
3 changed files with 7 additions and 8 deletions

View File

@@ -16,7 +16,6 @@ pointsTo_found_typeTracker_notFound
| code/func_defined_outside_class.py:42:1:42:7 | ControlFlowNode for Attribute() | B._gen.func |
| code/func_defined_outside_class.py:43:1:43:7 | ControlFlowNode for Attribute() | B._gen.func |
| code/func_ref_in_content.py:17:1:17:4 | ControlFlowNode for f2() | func |
| code/func_ref_in_content.py:20:1:20:4 | ControlFlowNode for f3() | func |
| code/funky_regression.py:15:9:15:17 | ControlFlowNode for Attribute() | Wat.f2 |
| code/type_tracking_limitation.py:8:1:8:3 | ControlFlowNode for x() | my_func |
typeTracker_found_pointsTo_notFound

View File

@@ -17,7 +17,7 @@ f2, _ = tup
f2() # $ pt=func MISSING: tt
f3 = tup[0]
f3() # $ pt=func MISSING: tt
f3() # $ tt,pt=func
def return_func_in_dict():