Closed
Bug 898628
Opened 12 years ago
Closed 11 years ago
`in` operator doesn't work with BinaryStruct instances
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: bbenvie, Unassigned)
References
Details
> var Foo = new StructType({ bar: uint8 })
> 'bar' in new Foo() // false
Comment 1•11 years ago
|
||
As of today:
js> var Foo = new TypedObject.StructType({ bar: TypedObject.uint8 })
js> 'bar' in new Foo()
true
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•