xref: /xnu-10063.121.3/tools/lldbmacros/core/lazytarget.py (revision 2c2f96dc2b9a4408a43d3150ae9c105355ca3daa)
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