xref: /xnu-11215.1.10/tools/lldbmacros/core/lazytarget.py (revision 8d741a5de7ff4191bf97d57b9f54c2f6d4a15585)
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