> the current proposed HTML integration defines the ShadowRealm global to behave _exactly_ like an ordinary object, but it's not an ordinary object.
As I mentioned in #411, that's fine:
> To ...
### Description
Cherry-picks the following commit(s) from master:
- https://github.com/Agoric/agoric-sdk/pull/10534 (https://github.com/Agoric/agoric-sdk/commit/8339df26533fd189dc576d92ed290...
### Description
Cherry-picks the following commit(s) from master:
- https://github.com/Agoric/agoric-sdk/pull/10534 (https://github.com/Agoric/agoric-sdk/commit/8339df26533fd189dc576d92ed290...
If this is something we can actually assert, that would work for me. In this case we should likely also assert that the object is extensible and that all own properties are configurable.
I suppo...
Didn't go through the actual implementation yet, but I see a decent amount of duplication with statements that already exist in the swing-store package. Any reason not to move that tool there and r...
Didn't go through the actual implementation yet, but I see a decent amount of duplication with statements that already exist in the swing-store package. Any reason not to move that tool there and r...
Thought about this some more, and I think a single validator node + a loadgen follower started from state-sync and running with xsnap random init should be sufficient to test determinism regression...
Would it make sense to have a message a little more descriptive? maybe:
```suggestion
[recLen17 - 3]: error('Error#3:', 'AsyncFlow1 definition site'),
```
while semantically equivalent to an `await eventLoopIteration()` followed by a call to `reject`, I assume this is written like this to put the rejection on an empty stack even if the engine has asy...
I would like to sanity check that the promise doesn't fulfill.
```suggestion
const caughtP = p2.then(
v => t.fail(`vow fulfilled with value ${v}`),
e => {
```
I am wondering if the ergonomics wouldn't be simpler with a wrapper for the original template tag function:
```js
inlineArgs(X)`foo bar ${inlinedArg}`;
```
Besides being an ephemeral store, I think we shouldn't burden ourselves with weak collections and their gc costs since we have delimited lifetimes for these host call entries, and don't need to ret...