Hi,
In function assert(condition, message), there's the following try/catch (rev
361) :
try {
var x; x.y;
} catch (exception) {
this.callstack = exception.stack.split("\n");
}
With Opera 10.10, the "x.y" instruction throws the following exception :
TypeError
Statement on line 851: Cannot convert undefined or null to Object
I don't understand the purpose of this line, and why it doesn't lead to an
exception in Firefox.
Cordialement,
Grégoire
|