57 @signal clientStatement(continue, debuggerId) emitted after an interactive |
57 @signal clientStatement(continue, debuggerId) emitted after an interactive |
58 command has been executed. The parameter is False to indicate that the |
58 command has been executed. The parameter is False to indicate that the |
59 command is complete and True if it needs more input. |
59 command is complete and True if it needs more input. |
60 @signal clientDisassembly(disassembly, debuggerId) emitted after the client |
60 @signal clientDisassembly(disassembly, debuggerId) emitted after the client |
61 has sent a disassembly of the code raising an exception |
61 has sent a disassembly of the code raising an exception |
62 @signal clientException(exceptionType, exceptionMessage, stackTrace, |
62 @signal clientException(exceptionType, exceptionMessage, stackTrace, debuggerId) |
63 debuggerId) emitted after an exception occured on the client side |
63 emitted after an exception occured on the client side |
64 @signal clientSyntaxError(message, filename, linenumber, characternumber, |
64 @signal clientSyntaxError(message, filename, linenumber, characternumber, debuggerId) |
65 debuggerId) emitted after a syntax error has been detected on the |
65 emitted after a syntax error has been detected on the |
66 client side |
66 client side |
67 @signal clientSignal(message, filename, linenumber, function name, |
67 @signal clientSignal(message, filename, linenumber, function name, function arguments, debuggerId) |
68 function arguments, debuggerId) emitted after a signal has been |
68 emitted after a signal has been |
69 generated on the client side |
69 generated on the client side |
70 @signal clientExit(str, int, str, bool, str) emitted after the client has |
70 @signal clientExit(str, int, str, bool, str) emitted after the client has |
71 exited giving the program name, the exit status, an exit message, an |
71 exited giving the program name, the exit status, an exit message, an |
72 indication to be quiet and the ID of the exited client |
72 indication to be quiet and the ID of the exited client |
73 @signal lastClientExited() emitted to indicate that the last connected |
73 @signal lastClientExited() emitted to indicate that the last connected |