We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 267e472 commit f5c7d39Copy full SHA for f5c7d39
scubatrace/identifier.py
@@ -269,7 +269,7 @@ def is_taint_from_entry(self) -> bool:
269
return True
270
return False
271
272
- @property
+ @cached_property
273
def is_left_value(self) -> bool:
274
"""
275
Checks if the identifier is a left value (e.g., a variable that can be assigned a value).
@@ -284,7 +284,7 @@ def is_left_value(self) -> bool:
284
# TODO: check if the identifier is an argument in a function call
285
286
287
288
def is_right_value(self) -> bool:
289
290
Checks if the identifier is a right value (e.g., a variable that is used to retrieve a value).
0 commit comments