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