Espruino/tests/test_iterate_function_object_props_for_in.js
Michael Duerinckx 7f5308590b Rename numbered tests to something more descriptive - closes #16
test077 is the only one I really couldn't figure out what it was meant
to test.
2014-03-01 22:15:28 +00:00

11 lines
134 B
JavaScript

// test for iterating over function properties
var d = "";
function f(a,b) {}
f.c = "Foo";
for (i in f) d+=i;
result = d == "c";