Changes between Version 4 and Version 5 of JavascriptDebuggingServer


Ignore:
Timestamp:
Mar 7, 2013, 3:50:47 PM (11 years ago)
Author:
Yves
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JavascriptDebuggingServer

    v4 v5  
    240240 * Circular references are not displayed circularly. Instead, it replaces the value with this text: "Debugger: object removed from output because of cyclic reference.".
    241241 * It would probably be better to stringify and transfer the global object incrementally (after expanding sub-objects) instead of doing it all at once.
     242 * Apparently GetStackFrameThis, GetStackFrame and GetCurrentGlobalObject don't return non-enumerable properties. I think it's because JS_Stringify is used for converting the objects to JSON. This and the two preceding issues are all reasons for writing an own JSON parser or passing another custom format to the web GUI.
    242243 * Quite a lot of little things that aren't perfect but should be acceptable for the first version.