Closed
Bug 6203
Opened 26 years ago
Closed 26 years ago
rhino: can't find default value for some objects
Categories
(Core :: JavaScript Engine, defect, P2)
Tracking
()
VERIFIED
WORKSFORME
People
(Reporter: cbegle, Assigned: norrisboyd)
References
()
Details
(This bug imported from BugSplat, Netscape's internal bugsystem. It
was known there as bug #345970
http://scopus.netscape.com/bugsplat/show_bug.cgi?id=345970
Imported into Bugzilla on 05/10/99 15:19)
this test works in the monkey
js> load("Expressions/instanceof-001.js")
instanceof-001 instanceof
instanceof-001 instanceof
js: "instanceof-001.js", line 24: Cannot find default value for object.
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
Assignee | ||
Comment 1•26 years ago
|
||
Works for me:
E:\src\ns\js\tests\ecma_2>rhino -f shell.js Expressions/instanceof-001.js
instanceof-001 instanceof
instanceof-001 instanceof
(true) instanceof (Boolean object) = false PASSED!
(false) instanceof (Boolean object) = true PASSED!
((instance of GenA)) instanceof (GenA object) = false PASSED!
((Gen2 instance)) instanceof (Gen0 object) = false PASSED!
((Gen2 instance)) instanceof (Gen1 object) = false PASSED!
((Gen2 instance)) instanceof (Gen2 object) = true PASSED!
((Gen2 instance)) instanceof (Gen3 object) = true PASSED!
((Gen0 instance)) instanceof (Gen0 object) = true PASSED!
((Gen0 instance)) instanceof (Gen1 object) = true PASSED!
((Gen0 instance)) instanceof (Gen2 object) = true PASSED!
((Gen0 instance)) instanceof (Gen3 object) = true PASSED!
((Gen0 instance)) instanceof (Object object) = true PASSED!
((Gen0 instance)) instanceof (Function object) = false PASSED!
((Gen0 object)) instanceof (Function object) = true PASSED!
((Gen0 object)) instanceof (Object object) = true PASSED!
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 3•26 years ago
|
||
Verified Worksforme
You need to log in
before you can comment on or make changes to this bug.
Description
•