Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-3761] Debugger: "arguments" in functions don't expand, and should report [object Arguments]

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionFixed
Resolution Date2011-05-15T10:12:28.000+0000
Affected Version/sRelease 1.7.0
Fix Version/sRelease 1.7.0, Sprint 2011-17
ComponentsAndroid
Labelsandroid, debugger, parity
ReporterMarshall Culpepper
AssigneeMarshall Culpepper
Created2011-04-27T13:05:57.000+0000
Updated2011-05-15T10:12:28.000+0000

Description

Comments

  1. Marshall Culpepper 2011-05-15

    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
  2. Don Thorp 2011-05-15

    Verified with the following code
       
       function join (a,b,c) {
       	Ti.API.debug("ABC: " + a + b + c);
       }
       
       join(1,2,3);
       

JSON Source