File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change 22
33import argparse
44import binascii
5- import inspect
65import os
76import shlex
87from typing import Any , Dict , Type
@@ -24,20 +23,6 @@ class PatternContainer(BaseContainer):
2423
2524 container_verb : str = "pattern"
2625
27- @classmethod
28- def lldb_self_register (cls , debugger : SBDebugger , module_name : str ) -> None :
29- container_command = (
30- f'command container add -h "{ cls .get_long_help ()} " -H '
31- + f'"{ cls .get_short_help ()} " { cls .container_verb } '
32- )
33- debugger .HandleCommand (container_command )
34-
35- for _ , member_cls in inspect .getmembers (cls ):
36- if inspect .isclass (member_cls ) and callable (
37- getattr (member_cls , "lldb_self_register" , None )
38- ):
39- member_cls .lldb_self_register (debugger , cls , module_name )
40-
4126 @staticmethod
4227 def get_short_help () -> str :
4328 return "pattern (create|search)"
You can’t perform that action at this time.
0 commit comments