This still doesn't seem quite right. Your code does indeed do per instance, which is indeed what I suggested. But don't we need per instance per incarnation? AFAICT, this only gets set by the `init...
Given your method naming convention `foo` vs `unfilteredFoo`, should these state variables be renamed to
```suggestion
index: 0,
unfilteredIndex: 0,
```
?
Separately, it looks like a bug that
> the test in intrinsics.js is inconsistently stricter than the https://github.com/endojs/endo/pull/1221 test in permit-intrinsics.js and runs first
Could...
Is it because the test in intrinsics.js is inconsistently stricter than the #1221 test in permit-intrinsics.js and runs first?
I also looked at the definition of these three functions to see wha...
Is it possible for `%AsyncGeneratorPrototype%` to be absent while `%AsyncIteratorPrototype%` is present? If so, is there some means to discover `%AsyncIteratorPrototype%` without `%AsyncGeneratorPr...
Please add at least a comment or a type that makes clear the conditional nature of this export. Maybe even a rename to imply its conditional nature?
Since this export is exported static state th...
What is gained from the extra indirection here of first forming the list of alternatives and then feeding them to an `M.or`? Do you expect to make some other use of `LogEntryAlternatives`?
Why is it that this one needs the name indirection but the other ops do not? In general my reaction is that I understand why such indirection adds value to C programs, but not to JS programs. Espec...
These lines are surprisingly asymmetric. How about just
```suggestion
startGeneration,
doFulfill,
doReject,
// doCall, // unimplemented in the current plan
```
?
Alterna...
Yes. For strings, normal lexicographic ordering is overwhelmingly more expected than shortlex. For binaries of different length, I don't think there is any one overwhelming expectation.
FWIW, if...
> This likely should move into Endo itself
Yes. I would prefer that you do it this way from the outset. If you then want to make it available to agoric-sdk before the next round of endo sync, ...