987 """ |
987 """ |
988 Public method to set the call trace state. |
988 Public method to set the call trace state. |
989 |
989 |
990 @param on flag indicating to enable the call trace function (boolean) |
990 @param on flag indicating to enable the call trace function (boolean) |
991 """ |
991 """ |
992 # TODO: remove the try/except once all interface have been adjusted |
992 self.debuggerInterface.setCallTraceEnabled(on) |
993 try: |
|
994 self.debuggerInterface.setCallTraceEnabled(on) |
|
995 except AttributeError: |
|
996 pass |
|
997 |
993 |
998 def remoteEval(self, arg): |
994 def remoteEval(self, arg): |
999 """ |
995 """ |
1000 Public method to evaluate arg in the current context of the debugged program. |
996 Public method to evaluate arg in the current context of the debugged program. |
1001 |
997 |