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