|
@@ -6,9 +6,9 @@ class Issue5572 extends unit.Test {
|
|
|
static var field2 = "user_3235_65290";
|
|
|
|
|
|
function test() {
|
|
|
- #if !(neko || hl)
|
|
|
+ #if !neko
|
|
|
var o = {};
|
|
|
- Reflect.setField(o, field1, 1); // first, goes into hashes array
|
|
|
+ Reflect.setField(o, field1, 1); // first, goes into hashes array
|
|
|
Reflect.setField(o, field2, 2); // second, added to object's "conflicts"
|
|
|
Reflect.setField(o, field2, 3); // should find one from "conflicts" and change the value
|
|
|
eq(Reflect.field(o, field1), 1); // retrieved from the hashes array
|