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