1 2 3 4 5 6 7 8 9 10 11 12
// |jit-test| error: ReferenceError function MyObject( value ) { this.value = value; value &= value; } ForIn_1(new MyObject(true)); function ForIn_1( object) { for ( property in object ) { object[property] == eval(property) } }