xref: /xnu-11417.121.6/tools/lldbmacros/core/lazytarget.py (revision a1e26a70f38d1d7daa7b49b258e2f8538ad81650)
1""" Module to abstract lazy evaluation of lldb.SBTarget
2    for kernel
3"""
4from .caching import LazyTarget
5
6# backward compatibility, this has moved to caching
7__all__ = [ LazyTarget.__name__ ]
8