xref: /xnu-12377.81.4/tools/lldbmacros/core/lazytarget.py (revision 043036a2b3718f7f0be807e2870f8f47d3fa0796)
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