Changes between Version 4 and Version 5 of JavascriptDebugging


Ignore:
Timestamp:
Jan 14, 2013, 9:53:12 PM (11 years ago)
Author:
Yves
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JavascriptDebugging

    v4 v5  
    8484You also get the ThreadDebuggerID to know which thread is meant.
    8585
     86=== Getting a stack frame ===
     87Returns all variables and their content of the specified thread and nesting level.
     88{{{
     89http://127.0.0.1:9000/GetStackFrame?nestingLevel=0&threadDebuggerID=1
     90}}}
     91
     92Returns:
     93{{{
     94... need to find a shorter example ...
     95}}}
     96
     97Arguments:
     98 * nestingLevel If you look at the function above (GetCallstack), nestingLevel=0 would point to the innermost stackframe (keywordTestOR). Native functions as "__eventhandler31" don't return any data.
     99 * threadDebuggerID The thread you want to get the a stack frame from.
    86100
    87101