1435 @type int |
1435 @type int |
1436 @param scope 1 to report global variables, 0 for local variables |
1436 @param scope 1 to report global variables, 0 for local variables |
1437 @type int |
1437 @type int |
1438 @param filterList the indices of variable types to be filtered |
1438 @param filterList the indices of variable types to be filtered |
1439 @type list of int |
1439 @type list of int |
1440 @param maxSize maximum size the formatted value of a variable will |
|
1441 be shown. If it is bigger than that, a 'too big' indication will |
|
1442 be given. |
|
1443 @type int |
|
1444 """ |
1440 """ |
1445 if self.currentThread is None: |
1441 if self.currentThread is None: |
1446 return |
1442 return |
1447 |
1443 |
1448 self.resolverCache = [{}, {}] |
1444 self.resolverCache = [{}, {}] |
1484 |
1480 |
1485 @param var list encoded name of the requested variable |
1481 @param var list encoded name of the requested variable |
1486 @type list of strings |
1482 @type list of strings |
1487 @param frmnr distance of frame reported on. 0 is the current frame |
1483 @param frmnr distance of frame reported on. 0 is the current frame |
1488 @type int |
1484 @type int |
1489 @param scope 1 to report global variables, 0 for local variables (int) |
1485 @param scope 1 to report global variables, 0 for local variables |
|
1486 @type int |
1490 @param filterList the indices of variable types to be filtered |
1487 @param filterList the indices of variable types to be filtered |
1491 @type list of int |
1488 @type list of int |
1492 @param maxSize maximum size the formatted value of a variable will |
|
1493 be shown. If it is bigger than that, a 'too big' indication will |
|
1494 be given. |
|
1495 @type int |
|
1496 """ |
1489 """ |
1497 if self.currentThread is None: |
1490 if self.currentThread is None: |
1498 return |
1491 return |
1499 |
1492 |
1500 frmnr += self.currentThread.skipFrames |
1493 frmnr += self.currentThread.skipFrames |