[TIMOB-3761] Debugger: "arguments" in functions don't expand, and should report [object Arguments]
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2011-05-15T10:12:28.000+0000 |
| Affected Version/s | Release 1.7.0 |
| Fix Version/s | Release 1.7.0, Sprint 2011-17 |
| Components | Android |
| Labels | android, debugger, parity |
| Reporter | Marshall Culpepper |
| Assignee | Marshall Culpepper |
| Created | 2011-04-27T13:05:57.000+0000 |
| Updated | 2011-05-15T10:12:28.000+0000 |
Steps to test: - Set a breakpoint inside any function that gets called with more than 0 args in the app - You should see "arguments" in the Variables view - Make sure arguments can expand, and shows all of the arguments that were passed in to the function - The right side of the Variables view should also report [object Arguments] on the "arguments" object
Verified with the following code
function join (a,b,c) { Ti.API.debug("ABC: " + a + b + c); } join(1,2,3);