IIterator.cs 230 B

1234567891011
  1. using Jint.Native.Object;
  2. using Jint.Runtime;
  3. namespace Jint.Native.Iterator
  4. {
  5. public interface IIterator
  6. {
  7. bool TryIteratorStep(out ObjectInstance nextItem);
  8. void Close(CompletionType completion);
  9. }
  10. }