MCPcopy Create free account
hub / github.com/Snapchat/Valdi / tsn_new_iterator

Function tsn_new_iterator

tsn/src/tsn/tsn.cpp:1841–1848  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1839}
1840
1841tsn_iterator tsn_new_iterator(tsn_vm* ctx, tsn_value iterable) {
1842 tsn_iterator it;
1843 it.iterator_method = tsn_undefined(ctx);
1844 it.iterator_value = JS_GetIterator_tsn(ctx, iterable, &it.iterator_method);
1845 it.has_dequeued_value = false;
1846
1847 return it;
1848}
1849
1850tsn_iterator tsn_new_keys_iterator(tsn_vm* ctx, tsn_value iterable) {
1851 tsn_iterator it;

Callers 1

tsn_copy_properties_implFunction · 0.85

Calls 1

tsn_undefinedFunction · 0.85

Tested by

no test coverage detected