================ @@ -0,0 +1,53 @@ +import os + +import lldb + + +class SourceLocator: + """Test locator that records calls and returns a configured resolved path.""" + + calls = [] + resolved_dir = None ---------------- medismailben wrote:
Can we make these instance members instead of class members ? https://github.com/llvm/llvm-project/pull/181334 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
