Results 9 comments of avp

I should be able to merge this when you fix those two comments.

I can't reproduce this; when I try that first statement (with ctx set to `{}`), I get the correct output.

Looks good - do you want to implement these?

That sounds good. These are kind of like variations on `mix` so they really should be different functions.

There's a couple possible reasons you could be getting empty string back from this function. 1. You're calling into the Runtime when there are no call frames, i.e. from the...

Hermes compiles all source to bytecode before executing it on a phone. As such, we discard source information including the actual text of the code, parameter names, etc. during compilation....

@cawfree Correct: Hermes does not currently support a way to include the original source in the bytecode bundle.

There was some prior discussion about WASM support in [this thread](https://github.com/facebook/hermes/issues/395#issuecomment-715500993).

This part of the code has a couple moving parts, so maybe I can help explain what's going on here: The code in `promise/index.js` in Hermes are calling `setPromiseRejectionTrackingHook`, which...