1404 @param debuggerId ID of the debugger backend |
1404 @param debuggerId ID of the debugger backend |
1405 @type str |
1405 @type str |
1406 @param scope the scope of the variables (0 = local, 1 = global) |
1406 @param scope the scope of the variables (0 = local, 1 = global) |
1407 @type int |
1407 @type int |
1408 @param filterList list of variable types to filter out |
1408 @param filterList list of variable types to filter out |
1409 @type list of int |
1409 @type list of str |
1410 @param framenr framenumber of the variables to retrieve |
1410 @param framenr framenumber of the variables to retrieve |
1411 @type int |
1411 @type int |
1412 """ |
1412 """ |
1413 self.debuggerInterface.remoteClientVariables( |
1413 self.debuggerInterface.remoteClientVariables( |
1414 debuggerId, scope, filterList, framenr, self.__maxVariableSize) |
1414 debuggerId, scope, filterList, framenr, self.__maxVariableSize) |
1421 @param debuggerId ID of the debugger backend |
1421 @param debuggerId ID of the debugger backend |
1422 @type str |
1422 @type str |
1423 @param scope the scope of the variables (0 = local, 1 = global) |
1423 @param scope the scope of the variables (0 = local, 1 = global) |
1424 @type int |
1424 @type int |
1425 @param filterList list of variable types to filter out |
1425 @param filterList list of variable types to filter out |
1426 @type list of int |
1426 @type list of str |
1427 @param var list encoded name of variable to retrieve |
1427 @param var list encoded name of variable to retrieve |
1428 @type list of str |
1428 @type list of str |
1429 @param framenr framenumber of the variables to retrieve |
1429 @param framenr framenumber of the variables to retrieve |
1430 @type int |
1430 @type int |
1431 @param maxSize maximum size the formatted value of a variable will |
1431 @param maxSize maximum size the formatted value of a variable will |