Home
last modified time | relevance | path

Searched refs:expected_return_object (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedPythonInterface.h67 llvm::Expected<PythonObject> expected_return_object = in Dispatch() local
71 [&implementor, &method_name, &expected_return_object](auto &&...args) { in Dispatch()
72 llvm::consumeError(expected_return_object.takeError()); in Dispatch()
73 expected_return_object = in Dispatch()
78 if (llvm::Error e = expected_return_object.takeError()) { in Dispatch()
84 PythonObject py_return = std::move(expected_return_object.get()); in Dispatch()