1615 "text": text, |
1615 "text": text, |
1616 }, |
1616 }, |
1617 debuggerId, |
1617 debuggerId, |
1618 ) |
1618 ) |
1619 |
1619 |
|
1620 def setAutoContinue(self, autoContinue): |
|
1621 """ |
|
1622 Public method to set the automatic continue flag of the interface. |
|
1623 |
|
1624 If this is set to True, the debugger will tell the debug client to continue |
|
1625 when it stops at the first line of the script to be debugged. |
|
1626 |
|
1627 @param autoContinue flag indicating the auto continue state |
|
1628 @type bool |
|
1629 """ |
|
1630 self.__autoContinue = autoContinue |
|
1631 |
1620 def __receiveJson(self, sock): |
1632 def __receiveJson(self, sock): |
1621 """ |
1633 """ |
1622 Private method to handle data from the client. |
1634 Private method to handle data from the client. |
1623 |
1635 |
1624 @param sock reference to the socket to read data from |
1636 @param sock reference to the socket to read data from |