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