xref: /xnu-10063.141.1/tools/lldbmacros/core/lazytarget.py (revision d8b80295118ef25ac3a784134bcf95cd8e88109f)
1*d8b80295SApple OSS Distributions""" Module to abstract lazy evaluation of lldb.SBTarget
2*d8b80295SApple OSS Distributions    for kernel
3*d8b80295SApple OSS Distributions"""
4*d8b80295SApple OSS Distributionsfrom .caching import LazyTarget
5*d8b80295SApple OSS Distributions
6*d8b80295SApple OSS Distributions# backward compatibility, this has moved to caching
7*d8b80295SApple OSS Distributions__all__ = [ LazyTarget.__name__ ]
8