Results 29 comments of avp

Found (one) difference in behavior upon modifying the code to call the result of the module. Hermes throws a TypeError if you try to access `.stack` on a non-Error, and...

Thanks for the report. This doesn't seem related to `Intl` given that the only conditionalization in the `Date` code is in `toLocaleString`. The [code to call the Date parser](https://github.com/facebook/hermes/blob/649ceaa4c8b2ed331251152ccb7fcee07f19fc4c/lib/VM/JSLib/Date.cpp#L445) appears...

We do plan to add support for parsing decorators, but we haven't done so yet given that they aren't standardized yet. https://github.com/tc39/proposal-decorators is at stage 3, so we'll likely be...

Thanks for the report. Looks like we're resolving the `test()` call in the first `test()` function incorrectly. We'll figure out how to solve this.

@trossimel-sc The `update-lit` build target will update the tests that are autogenerated, then `check-hermes` to run them. [`LIT_FILTER`](https://llvm.org/docs/CommandGuide/lit.html#cmdoption-lit-filter) will let you narrow down what exactly gets updated or run as...

> I also noticed the build is failing on static_h. That should be fixed with ae186905e9b2d6c30e7015d3b418fba7aea51d11

@trossimel-sc The internal failure is due to a bad interaction with lazy compilation. Test case: ``` (function() { { function* x() {} } })(); (function() { function* y() { yield...

@trossimel-sc We have one more issue with lazy compilation. Test case: ``` function foo() { var result; { let x = 0; result = ret; function ret() { return x;...

d1cd9925c1b9deebfe7ca1c18dc5ed046b050c20