1510 def __dumpVariable(self, var, frmnr, scope, filterList): |
1510 def __dumpVariable(self, var, frmnr, scope, filterList): |
1511 """ |
1511 """ |
1512 Private method to return the variables of a frame to the debug server. |
1512 Private method to return the variables of a frame to the debug server. |
1513 |
1513 |
1514 @param var list encoded name of the requested variable |
1514 @param var list encoded name of the requested variable |
1515 @type list of strings |
1515 @type list of str |
1516 @param frmnr distance of frame reported on. 0 is the current frame |
1516 @param frmnr distance of frame reported on. 0 is the current frame |
1517 @type int |
1517 @type int |
1518 @param scope 1 to report global variables, 0 for local variables |
1518 @param scope 1 to report global variables, 0 for local variables |
1519 @type int |
1519 @type int |
1520 @param filterList list of variable types to be filtered |
1520 @param filterList list of variable types to be filtered |