This patch improves the ScriptedPythonInterface::Dispatch method to
support passing lldb_private types to the python implementation.
This will allow, for instance, the Scripted Process python implementation
to report errors, when reading memory, back to lldb.
To do so, the Dispatch method will transform the private types in the
parameter pack into PythonObjects to be able to pass them down to the
python methods.
Then, if the call succeeded, the transformed arguments will be converted
back to their original type and re-assigned in the parameter pack, to
ensure pointers and references behaviours are preserved.
This patch also updates various scripted process python class and tests
to reflect this change.
rdar://100030995
Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
add const ?