Updates:
        Status: PendingFurtherInfo

Comment #1 on issue 2787 by jkumme...@chromium.org: array of object type ([{type : String}] is failing.
http://code.google.com/p/v8/issues/detail?id=2787

Works for me:

d8> var testArr = [{"type":"String"}];
d8> for (var prop in testArr[0]) { print ("prop: " + prop); }
prop: type

Be sure to get syntax right: print(" prop :" prop) can't possibly work because there's a '+' missing between the string and the variable. Instead of {"required", "true"} you probably meant {"required": "true"}.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to