This patch introduces a new GetScriptedImplementation method to the
SBProcess class in the SBAPI. It will allow users of Scripted Processes to
fetch the scripted implementation object from to script interpreter to be
able to interact with it directly (without having to go through lldb).
This allows to user to perform action that are not specified in the
scripted process interface, like calling un-specified methods, but also
to enrich the implementation, by passing it complex objects.
Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
Maybe a docstring is in order? Something to explain how to use this.