diff -r 0c6d32ec64f1 -r 6abcf4275d0e eric6/Documentation/Source/eric6.Debugger.DebugServer.html --- a/eric6/Documentation/Source/eric6.Debugger.DebugServer.html Sun Sep 20 18:32:43 2020 +0200 +++ b/eric6/Documentation/Source/eric6.Debugger.DebugServer.html Mon Sep 21 19:03:35 2020 +0200 @@ -97,6 +97,11 @@ the commandline completion list and the reworked searchstring was received from the client </dd> +<dt>clientDisassembly(disassembly)</dt> +<dd> +emitted after the client has sent + a disassembly of the code raising an exception +</dd> <dt>clientException(exception)</dt> <dd> emitted after an exception occured on @@ -488,6 +493,10 @@ <td>Public slot to get the debug clients capabilities.</td> </tr> <tr> +<td><a href="#DebugServer.remoteClientDisassembly">remoteClientDisassembly</a></td> +<td>Public method to ask the client for the latest traceback disassembly.</td> +</tr> +<tr> <td><a href="#DebugServer.remoteClientSetFilter">remoteClientSetFilter</a></td> <td>Public method to set a variables filter list.</td> </tr> @@ -620,6 +629,10 @@ <td>Public method to process the client auto completion info.</td> </tr> <tr> +<td><a href="#DebugServer.signalClientDisassembly">signalClientDisassembly</a></td> +<td>Public method to process the disassembly info from the client.</td> +</tr> +<tr> <td><a href="#DebugServer.signalClientException">signalClientException</a></td> <td>Public method to process the exception info from the client.</td> </tr> @@ -1657,6 +1670,13 @@ <p> Public slot to get the debug clients capabilities. </p> +<a NAME="DebugServer.remoteClientDisassembly" ID="DebugServer.remoteClientDisassembly"></a> +<h4>DebugServer.remoteClientDisassembly</h4> +<b>remoteClientDisassembly</b>(<i></i>) + +<p> + Public method to ask the client for the latest traceback disassembly. +</p> <a NAME="DebugServer.remoteClientSetFilter" ID="DebugServer.remoteClientSetFilter"></a> <h4>DebugServer.remoteClientSetFilter</h4> <b>remoteClientSetFilter</b>(<i>scope, filterStr</i>) @@ -2421,6 +2441,20 @@ the text to be completed (string) </dd> </dl> +<a NAME="DebugServer.signalClientDisassembly" ID="DebugServer.signalClientDisassembly"></a> +<h4>DebugServer.signalClientDisassembly</h4> +<b>signalClientDisassembly</b>(<i>disassembly</i>) + +<p> + Public method to process the disassembly info from the client. +</p> +<dl> + +<dt><i>disassembly</i> (dict)</dt> +<dd> +dictionary containing the disassembly information +</dd> +</dl> <a NAME="DebugServer.signalClientException" ID="DebugServer.signalClientException"></a> <h4>DebugServer.signalClientException</h4> <b>signalClientException</b>(<i>exceptionType, exceptionMessage, stackTrace</i>)