Open GoogleCodeExporter opened 9 years ago
The message in stderr panel is:
debugger.js:233: strict warning: reference to undefined property _cookie[name]
hope this is helpful
Original comment by jbscott....@gmail.com
on 19 Jul 2009 at 12:07
I don't know if this error existed before release 3.5 of FF (I upgraded last
night).
There is an error in command line:
debugger.js:380: strict warning: trailing comma is not legal in ECMA-262 object
initializers
I did remove that comma, and that error disappeared.
There are also error messages for lines: 73, 88, 95, 118, 119, 354, and
233:
73, 119: function ProcessRequest does not always return a value
88, 95, 118, 119: anonymous function does not always return a value
233: strict warning: reference to undefined property _cookie[name]
Original comment by jbscott....@gmail.com
on 19 Jul 2009 at 12:34
354: variable lineno redeclares argument:
var lineno = dbg.ToggleBreakpoint(true, filename, lineno);
Original comment by jbscott....@gmail.com
on 19 Jul 2009 at 12:39
Original comment by sou...@gmail.com
on 19 Jul 2009 at 10:16
Thanks for reporting the issue.
The error occurs also when you enter [1,2,3] in the watch ant then click on the
'+'.
The crash is an Assertion failure: s = 0x101dc1f8 "OBJ_IS_NATIVE(obj)"
located in JS_PropertyIterator() (jsdbgapi.cpp).
I will try to update the JavaScript engine and test again.
Original comment by sou...@gmail.com
on 19 Jul 2009 at 10:25
Update to the latest version of TraceMonkey failed due to a compilation error in
jsscript.cpp (see https://bugzilla.mozilla.org/show_bug.cgi?id=505090)
Original comment by sou...@gmail.com
on 19 Jul 2009 at 11:06
see also the following issue:
https://bugzilla.mozilla.org/show_bug.cgi?id=505096
(easily workaroundable)
Original comment by sou...@gmail.com
on 19 Jul 2009 at 11:41
C test case:
JSObject *o = JS_NewArrayObject(cx, 0, NULL);
JSScopeProperty *jssp;
jssp = NULL;
JS_PropertyIterator(o, &jssp);
Original comment by sou...@gmail.com
on 24 Jul 2009 at 8:49
note that mozilla is working on a new Debugger object
(https://developer.mozilla.org/en/SpiderMonkey/JS_Debugger_API_Reference) that
will completely replace the jslibs debugger module (jsdebug).
Original comment by sou...@gmail.com
on 21 Feb 2012 at 8:37
Original issue reported on code.google.com by
jbscott....@gmail.com
on 18 Jul 2009 at 12:57Attachments: