blob: 7d92caeb0b5321316b777eb99c535a9c06c698d7 [file] [log] [blame]
description(
"This tests that propertyIsEnumerable works according to the ECMA spec."
);
a = new Array();
a.foo='bar'
shouldBeFalse("a.propertyIsEnumerable('length')");
shouldBeTrue("a.propertyIsEnumerable ('foo')");
shouldBeFalse("a.propertyIsEnumerable ('non-existant')");
var successfullyParsed = true;