blob: 31b8644a3e9783c9dc91695c8ffba9e44ce84473 [file] [log] [blame]
__all__ = ["cache", "synth", "metrics", "attrib_fromdict", "Logger"]
for x in __all__:
__import__('lldb.formatters.' + x)
def __lldb_init_module(debugger, internal_dict):
import lldb
for x in __all__:
submodule = getattr(lldb.formatters, x)
lldb_init = getattr(submodule, '__lldb_init_module', None)
if lldb_init:
lldb_init(debugger, internal_dict)