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