| 69 | |
| 70 | |
| 71 | class LambdaOptions(Options): |
| 72 | enable_tracking = True |
| 73 | track_closure_variables = True |
| 74 | track_on: Optional[object] = None |
| 75 | global_track_bound_values = True |
| 76 | track_bound_values = True |
| 77 | lambda_cache: Optional[_LambdaCacheType] = None |
| 78 | |
| 79 | |
| 80 | def lambda_stmt( |
no outgoing calls