1451 def __dumpVariable(self, var, frmnr, scope, filterList): |
1451 def __dumpVariable(self, var, frmnr, scope, filterList): |
1452 """ |
1452 """ |
1453 Private method to return the variables of a frame to the debug server. |
1453 Private method to return the variables of a frame to the debug server. |
1454 |
1454 |
1455 @param var list encoded name of the requested variable |
1455 @param var list encoded name of the requested variable |
1456 @type list of strings |
1456 @type list of str |
1457 @param frmnr distance of frame reported on. 0 is the current frame |
1457 @param frmnr distance of frame reported on. 0 is the current frame |
1458 @type int |
1458 @type int |
1459 @param scope 1 to report global variables, 0 for local variables |
1459 @param scope 1 to report global variables, 0 for local variables |
1460 @type int |
1460 @type int |
1461 @param filterList the indices of variable types to be filtered |
1461 @param filterList the indices of variable types to be filtered |