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