mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
443 B
30 lines
443 B
12 years ago
|
/*
|
||
|
* Property deleted from enumeration target is still found from
|
||
|
* ancestor after deletion. Should it be enumerated or not?
|
||
|
*/
|
||
|
|
||
|
/*---
|
||
|
{
|
||
|
"skip": true
|
||
|
}
|
||
|
---*/
|
||
|
|
||
|
/*===
|
||
|
bar skip
|
||
|
foo inherited
|
||
|
===*/
|
||
|
|
||
|
function F() {};
|
||
|
F.prototype = { "foo": "inherited" };
|
||
|
|
||
|
var a = new F();
|
||
|
a.bar = "skip";
|
||
|
a.foo = "own";
|
||
|
|
||
|
// enumeration order: "bar", "foo"
|
||
|
for (var i in a) {
|
||
|
delete a.foo; // only affects 'a', not F.prototype
|
||
|
print(i, a[i]);
|
||
|
}
|
||
|
|