for (i = 0; i < backtrace->items; i++) {
if (be[i].line != 0) {
- len += sizeof(" at (:)\n") - 1 + 10
+ len += sizeof(" at (:)\n") + 10
+ be[i].name.length;
} else {
- len += sizeof(" at (native)\n") - 1
+ len += sizeof(" at (native)\n")
+ be[i].name.length;
}
}
{ nxt_string("Object.prototype.__proto__ === null"),
nxt_string("true") },
+ { nxt_string("Object.prototype.__proto__.f()"),
+ nxt_string("InternalError: method 'f' query failed:-1") },
+
{ nxt_string("Object.prototype.toString.call(Object.prototype)"),
nxt_string("[object Object]") },