Closed
Bug 862852
Opened 13 years ago
Closed 2 years ago
Exception logged when trying to get properties off a proxy with a useless handler is somewhat random
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
INCOMPLETE
People
(Reporter: bzbarsky, Unassigned)
Details
This shell testcase:
function func() {
}
func.prototype = Proxy.create({}, {});
var obj = new func();
print(obj.something);
says:
5:2 TypeError: print is not a function
which is clearly not the case; where did it pick up the 'print' string, exactly?
| Assignee | ||
Updated•11 years ago
|
Assignee: general → nobody
Updated•3 years ago
|
Severity: normal → S3
Updated•2 years ago
|
Status: NEW → RESOLVED
Closed: 2 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•