1283 @param scope scope of the variables (-1 = empty global, 1 = global, |
1283 @param scope scope of the variables (-1 = empty global, 1 = global, |
1284 0 = local) |
1284 0 = local) |
1285 @param variables the list of members of a classvariable from the client |
1285 @param variables the list of members of a classvariable from the client |
1286 """ |
1286 """ |
1287 if scope == 1: |
1287 if scope == 1: |
1288 self.debugViewer.showVariable(variables, 1) |
1288 self.debugViewer.showVariable(variables, True) |
1289 elif scope == 0: |
1289 elif scope == 0: |
1290 self.debugViewer.showVariable(variables, 0) |
1290 self.debugViewer.showVariable(variables, False) |
1291 |
1291 |
1292 def __clientBreakConditionError(self, filename, lineno): |
1292 def __clientBreakConditionError(self, filename, lineno): |
1293 """ |
1293 """ |
1294 Private method to handle a condition error of a breakpoint. |
1294 Private method to handle a condition error of a breakpoint. |
1295 |
1295 |