<rdar://problem/13434476>
authorEnrico Granata <egranata@apple.com>
Mon, 25 Mar 2013 18:53:07 +0000 (18:53 +0000)
committerEnrico Granata <egranata@apple.com>
Mon, 25 Mar 2013 18:53:07 +0000 (18:53 +0000)
commitac9df2d1a6ed91d49adc3d84a1b84774632604e3
tree52d854f2343ce1821cb7b742c509bcd6ea19be1d
parent1ad494d35bc24af977085026e97243f70bd2839c
<rdar://problem/13434476>

Making value objects properly iterable in constructs of the form
[ x for x in value_with_children ]

This would previously cause an endless loop because lacking a proper iterator object, Python will keep calling __getitem__() with increasing values of the index until it gets an IndexError
since SBValue::GetValueForExpressionPath() supports synthetic array members, no array index will ever really cause an IndexError to be raised, hence the endless iteration

class value_iter is an implementation of __iter__() that provides a terminating iterator over a value

llvm-svn: 177885
lldb/scripts/Python/python-extensions.swig