update the _compile_options with new keys.
(self, options: CacheableOptions)
| 1440 | |
| 1441 | @_generative |
| 1442 | def _update_compile_options(self, options: CacheableOptions) -> Self: |
| 1443 | """update the _compile_options with new keys.""" |
| 1444 | |
| 1445 | assert self._compile_options is not None |
| 1446 | self._compile_options += options |
| 1447 | return self |
| 1448 | |
| 1449 | @_generative |
| 1450 | def _add_compile_state_func( |