(
cls, statement: Executable, plugin_name: str
)
| 812 | |
| 813 | @classmethod |
| 814 | def _get_plugin_class_for_plugin( |
| 815 | cls, statement: Executable, plugin_name: str |
| 816 | ) -> Optional[Type[CompileState]]: |
| 817 | try: |
| 818 | return cls.plugins[ |
| 819 | (plugin_name, statement._effective_plugin_target) |
| 820 | ] |
| 821 | except KeyError: |
| 822 | return None |
| 823 | |
| 824 | @classmethod |
| 825 | def plugin_for( |
no outgoing calls
no test coverage detected